11 lines
113 B
Python
11 lines
113 B
Python
from untitled.app import App
|
|
|
|
|
|
def main():
|
|
app = App()
|
|
app.run()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|