Compare commits

..

2 Commits

Author SHA1 Message Date
782e0f7b97
feat: store bcrypt encoded passwords 2021-06-06 18:04:15 +02:00
3cde9f1078
chore: clean up code 2021-06-06 18:03:24 +02:00

View File

@ -1,10 +1,9 @@
import bcrypt
import ldap
from fastapi import FastAPI, HTTPException, Response
from pydantic import BaseModel
from config import LDAP_URI, LDAP_BASE_DN
from config import LDAP_BASE_DN, LDAP_URI
app = FastAPI()