mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-18 02:13:08 +09:00
9 lines
288 B
Python
9 lines
288 B
Python
def main(request, response):
|
|
try:
|
|
count = int(request.server.stash.take(request.GET["id"]))
|
|
except:
|
|
count = 0
|
|
if "count" in request.GET:
|
|
return str(count)
|
|
request.server.stash.put(request.GET["id"], str(count + 1))
|
|
return 'body { color: red }'
|