added JS UI and carddeck
This commit is contained in:
@ -15,6 +15,19 @@ def css(req, resp, file):
|
||||
with open(full_file, encoding='utf-8') as fin:
|
||||
resp.content = fin.read()
|
||||
|
||||
@api.route("/js-cardgame/deck/{file}")
|
||||
def css(req, resp, file):
|
||||
resp.headers['Content-Type'] = 'image/jpeg'
|
||||
full_file = os.path.join(
|
||||
os.path.dirname(__file__),
|
||||
'..',
|
||||
'deck/',
|
||||
file
|
||||
)
|
||||
with open(full_file, 'rb') as fin:
|
||||
resp.content = fin.read()
|
||||
|
||||
|
||||
@api.route("/js-cardgame/js/{file}")
|
||||
def css(req, resp, file):
|
||||
resp.headers['Content-Type'] = 'application/javascript'
|
||||
|
Reference in New Issue
Block a user