mirror of
https://github.com/OpenBMB/ChatDev.git
synced 2026-05-01 06:08:53 +00:00
11 lines
268 B
Python
11 lines
268 B
Python
'''
|
|
This is the main file of the e-book reader application.
|
|
'''
|
|
from ebook_reader import EbookReader
|
|
def main():
|
|
# Create an instance of the EbookReader
|
|
reader = EbookReader()
|
|
# Start the application
|
|
reader.start()
|
|
if __name__ == "__main__":
|
|
main() |