Files
LANMap/backend/app/models/__init__.py
2025-12-06 12:28:55 +01:00

7 lines
102 B
Python

"""
Modèles SQLAlchemy pour IPWatch
"""
from .ip import IP, IPHistory
__all__ = ["IP", "IPHistory"]