30 lines
712 B
Python
30 lines
712 B
Python
|
import os
|
||
|
|
||
|
from app_instance import api
|
||
|
|
||
|
|
||
|
@api.route("/js-cardgame/{file}")
|
||
|
def css(req, resp, file):
|
||
|
resp.headers['Content-Type'] = 'application/javascript'
|
||
|
full_file = os.path.join(
|
||
|
os.path.dirname(__file__),
|
||
|
'..',
|
||
|
'js-cardgame',
|
||
|
file
|
||
|
)
|
||
|
with open(full_file, encoding='utf-8') as fin:
|
||
|
resp.content = fin.read()
|
||
|
|
||
|
@api.route("/js-cardgame/js/{file}")
|
||
|
def css(req, resp, file):
|
||
|
resp.headers['Content-Type'] = 'application/javascript'
|
||
|
full_file = os.path.join(
|
||
|
os.path.dirname(__file__),
|
||
|
'..',
|
||
|
'js-cardgame',
|
||
|
'js',
|
||
|
file
|
||
|
)
|
||
|
with open(full_file, encoding='utf-8') as fin:
|
||
|
resp.content = fin.read()
|