updated layout - make server as package

This commit is contained in:
nahakubuilde
2025-05-30 07:30:59 +01:00
parent 9c1f2fcc3c
commit aa7285af39
10 changed files with 41 additions and 19 deletions

View File

@@ -5,7 +5,7 @@ Authentication modules for the SMTP server.
import logging
from datetime import datetime
from aiosmtpd.smtp import AuthResult, LoginPassword
from models import Session, User, Domain, WhitelistedIP, AuthLog, check_password
from .models import Session, User, Domain, WhitelistedIP, AuthLog, check_password
logger = logging.getLogger(__name__)