Initial commit

This commit is contained in:
CNlaojing
2025-03-19 13:02:51 +08:00
commit 6752a5cd9f
41 changed files with 7792 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
# main.py
# -*- coding: utf-8 -*-
import customtkinter as ctk
from ui import NovelGeneratorGUI
def main():
app = ctk.CTk()
gui = NovelGeneratorGUI(app)
app.mainloop()
if __name__ == "__main__":
main()