7 lines
143 B
Python
7 lines
143 B
Python
# domains/arquitecture_layer/__init__.py
|
|
from .Repo import *
|
|
from .Mapper import *
|
|
from .Model import *
|
|
|
|
__all__ = ["Repo", "Mapper", "Model"]
|