15 lines
435 B
Python
15 lines
435 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 *
|
|
# noinspection PyUnresolvedReferences
|
|
from views.control import *
|
|
|
|
api.add_route("/static", static=True)
|