Initial commit

This commit is contained in:
YILING0013
2025-01-29 20:33:20 +08:00
commit c99601fe10
21 changed files with 1201 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import tkinter as tk
from ui import NovelGeneratorGUI
def main():
root = tk.Tk()
root.title("Novel Generator - Innovative Flow")
app = NovelGeneratorGUI(root)
root.mainloop()
if __name__ == "__main__":
main()