32 lines
439 B
Python
32 lines
439 B
Python
"""Data models for Odoo Directory."""
|
|
|
|
from .schemas import (
|
|
Region,
|
|
Country,
|
|
City,
|
|
Tag,
|
|
Company,
|
|
CompanyTag,
|
|
CityTag,
|
|
CountryTag,
|
|
ExecutionPlan,
|
|
PlanStep,
|
|
StepStatus,
|
|
TagCategory,
|
|
)
|
|
|
|
__all__ = [
|
|
"Region",
|
|
"Country",
|
|
"City",
|
|
"Tag",
|
|
"Company",
|
|
"CompanyTag",
|
|
"CityTag",
|
|
"CountryTag",
|
|
"ExecutionPlan",
|
|
"PlanStep",
|
|
"StepStatus",
|
|
"TagCategory",
|
|
]
|