feat: add initial database models and changelog for financial inputs and projects
This commit is contained in:
17
models/__init__.py
Normal file
17
models/__init__.py
Normal file
@@ -0,0 +1,17 @@
|
||||
"""Database models for the CalMiner domain."""
|
||||
|
||||
from .financial_input import FinancialCategory, FinancialInput
|
||||
from .project import MiningOperationType, Project
|
||||
from .scenario import Scenario, ScenarioStatus
|
||||
from .simulation_parameter import DistributionType, SimulationParameter
|
||||
|
||||
__all__ = [
|
||||
"FinancialCategory",
|
||||
"FinancialInput",
|
||||
"MiningOperationType",
|
||||
"Project",
|
||||
"Scenario",
|
||||
"ScenarioStatus",
|
||||
"DistributionType",
|
||||
"SimulationParameter",
|
||||
]
|
||||
Reference in New Issue
Block a user