Initial commit - Customer Portal for Coolify

This commit is contained in:
2025-12-17 10:08:34 +01:00
commit 9fca32567c
153 changed files with 16432 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
"""Business logic services."""
from customer_portal.services.auth import AuthService
from customer_portal.services.email import EmailService
from customer_portal.services.otp import OTPService
__all__ = ["AuthService", "EmailService", "OTPService"]