7 lines
100 B
Python
7 lines
100 B
Python
|
from webinterface import create_app
|
||
|
|
||
|
iapp = create_app()
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
iapp.run()
|