Initial commit of auth server

This commit is contained in:
2020-09-16 21:41:55 +00:00
parent c8d5cece83
commit 53ae4c31bb
7 changed files with 201 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
from log import logger
import time
import secrets
from flask import abort
HTTP_NOTFOUND = 404
def set_password(username, password):
# TODO
print(username, password)
if __name__ == '__main__':
print(set_password('test.test', 'password'))
pass