Files
2026-07-18 15:04:19 +08:00

17 lines
230 B
Python

"""
cwExcel - Python Desktop Application
入口模块
"""
import tkinter as tk
from app import MainApplication
def main():
root = tk.Tk()
app = MainApplication(root)
app.run()
if __name__ == "__main__":
main()