Add custom email string type (#277)

This commit is contained in:
Wu Clan
2024-01-24 10:17:04 +08:00
committed by GitHub
parent cd96d2f5cd
commit 4f1d1c2094
6 changed files with 15 additions and 22 deletions

View File

@ -2,12 +2,12 @@
# -*- coding: utf-8 -*-
import sys
from typing import Annotated
from uuid import uuid4
from fastapi import Depends
from sqlalchemy import URL
from sqlalchemy.ext.asyncio import AsyncSession, async_sessionmaker, create_async_engine
from typing_extensions import Annotated
from backend.app.common.log import log
from backend.app.core.conf import settings