mirror of
https://github.com/silenty4ng/k5sat
synced 2025-01-15 06:52:08 +00:00
update
This commit is contained in:
parent
0c6156008b
commit
748e7c4e90
1 changed files with 2 additions and 1 deletions
3
app.py
3
app.py
|
@ -23,7 +23,8 @@ def lol():
|
|||
if func == 0:
|
||||
r.set(_uuid, _cache, 600)
|
||||
else:
|
||||
_cache = r.get(_uuid).decode("utf-8")
|
||||
if r.get(_uuid):
|
||||
_cache = r.get(_uuid).decode("utf-8")
|
||||
return jsonify({'code': 200, 'uuid': _uuid, 'cache': _cache})
|
||||
|
||||
@app.route("/pass", methods=['POST'])
|
||||
|
|
Loading…
Reference in a new issue