11 lines
171 B
Python
11 lines
171 B
Python
from app import app
|
|
|
|
from static import *
|
|
|
|
from api.controller.entries import *
|
|
from api.controller.accounts import *
|
|
|
|
if __name__ == '__main__':
|
|
app.run(debug=True)
|
|
|