12 lines
178 B
Python
12 lines
178 B
Python
import app
|
|
|
|
if __name__ == "__main__":
|
|
# try:
|
|
# startat = int(sys.argv[1])
|
|
# except:
|
|
# startat = None
|
|
|
|
application = app.app()
|
|
|
|
application.run()
|