-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: move to energy components (#737)
* refactor: move new components to energy components
- Loading branch information
Showing
39 changed files
with
1,241 additions
and
1,086 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
from libecalc.domain.infrastructure.components import ( | ||
Asset, | ||
BaseConsumer, | ||
from libecalc.domain.infrastructure.energy_components.asset.asset import Asset | ||
from libecalc.domain.infrastructure.energy_components.base.component_dto import BaseConsumer | ||
from libecalc.domain.infrastructure.energy_components.electricity_consumer.electricity_consumer import ( | ||
ElectricityConsumer, | ||
FuelConsumer, | ||
GeneratorSet, | ||
Installation, | ||
) | ||
from libecalc.domain.infrastructure.energy_components.fuel_consumer.fuel_consumer import FuelConsumer | ||
from libecalc.domain.infrastructure.energy_components.generator_set.generator_set_dto import GeneratorSet | ||
from libecalc.domain.infrastructure.energy_components.installation.installation import Installation |
Oops, something went wrong.