This commit is contained in:
ilya
2025-06-17 15:47:44 +03:00
commit d5428044d1
7 changed files with 210 additions and 0 deletions

9
oxi/models/__init__.py Normal file
View File

@@ -0,0 +1,9 @@
from .vrp import Vrp
from .qtech import Qtech
from .mikrotik import Mikrotik
__all__ = [
'Vrp',
'Qtech',
'Mikrotik'
]