ChatDev/WareHouse/BookBreeze_THUNLP_20230825072339/main.py
2023-09-04 19:24:28 +08:00

11 lines
No EOL
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()