7 lines
97 B
Python
7 lines
97 B
Python
#!/usr/bin/python3
|
|
from app import App
|
|
|
|
if __name__ == '__main__':
|
|
app = App()
|
|
app.run()
|