18 lines
537 B
Python
18 lines
537 B
Python
# noinspection PyUnresolvedReferences
|
|
from app_instance import api
|
|
# noinspection PyUnresolvedReferences
|
|
from views.home import *
|
|
# noinspection PyUnresolvedReferences
|
|
from views.temp_css import *
|
|
# noinspection PyUnresolvedReferences
|
|
from views.player import *
|
|
# noinspection PyUnresolvedReferences
|
|
from views.gplayer import *
|
|
# noinspection PyUnresolvedReferences
|
|
from views.js_cardgame import *
|
|
# noinspection PyUnresolvedReferences
|
|
from views.control import *
|
|
|
|
api.add_route("/static", static=True)
|
|
api.add_route("/js", static=True)
|