Initial commit

This commit is contained in:
BarsTiger
2023-11-16 22:49:59 +02:00
commit 653711aba3
20 changed files with 386 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import base64
def dump(obj):
return base64.b64encode(obj).decode()
def load(obj):
return base64.b64decode(obj.encode())