6 lines
100 B
Python
6 lines
100 B
Python
from sqlalchemy.orm import declarative_base
|
|
|
|
# SQLAlchemy Base 클래스
|
|
Base = declarative_base()
|
|
|