13 lines
369 B
Python
13 lines
369 B
Python
|
# noinspection PyUnresolvedReferences
|
||
|
from app_instance import api
|
||
|
# noinspection PyUnresolvedReferences
|
||
|
from views.api_views import *
|
||
|
# noinspection PyUnresolvedReferences
|
||
|
from views.home import *
|
||
|
# noinspection PyUnresolvedReferences
|
||
|
from views.temp_css import *
|
||
|
# noinspection PyUnresolvedReferences
|
||
|
from views.player import *
|
||
|
|
||
|
api.add_route("/static", static=True)
|