|
1 | 1 | # Locations |
2 | | -from .constellation import Constellation |
3 | | -from .region import Region |
4 | | -from .system import System |
5 | | -from .station import Station |
| 2 | +from thing.models.region import Region |
| 3 | +from thing.models.constellation import Constellation |
| 4 | +from thing.models.system import System |
| 5 | +from thing.models.station import Station |
6 | 6 |
|
7 | 7 | # Entities |
8 | | -from .faction import Faction |
9 | | -from .alliance import Alliance |
10 | | -from .corporation import Corporation |
11 | | -from .character import Character |
| 8 | +from thing.models.faction import Faction |
| 9 | +from thing.models.alliance import Alliance |
| 10 | +from thing.models.corporation import Corporation |
| 11 | +from thing.models.character import Character |
12 | 12 |
|
13 | 13 | # |
14 | | -from .inventoryflag import InventoryFlag |
15 | | -from .reftype import RefType |
| 14 | +from thing.models.inventoryflag import InventoryFlag |
| 15 | +from thing.models.reftype import RefType |
16 | 16 |
|
17 | 17 | # Items |
18 | | -from .marketgroup import MarketGroup |
19 | | -from .itemcategory import ItemCategory |
20 | | -from .itemgroup import ItemGroup |
21 | | -from .item import Item |
22 | | -from .blueprint import Blueprint |
23 | | -from .skill import Skill |
| 18 | +from thing.models.marketgroup import MarketGroup |
| 19 | +from thing.models.itemcategory import ItemCategory |
| 20 | +from thing.models.itemgroup import ItemGroup |
| 21 | +from thing.models.item import Item |
| 22 | +from thing.models.blueprint import Blueprint |
| 23 | +from thing.models.skill import Skill |
24 | 24 |
|
25 | 25 | # Everything else |
26 | | -from .apikey import APIKey |
27 | | -from .apikeyfailure import APIKeyFailure |
28 | | -from .asset import Asset |
29 | | -from .assetsummary import AssetSummary |
30 | | -from .blueprintcomponent import BlueprintComponent |
31 | | -from .blueprintinstance import BlueprintInstance |
32 | | -from .campaign import Campaign |
33 | | -from .characterconfig import CharacterConfig |
34 | | -from .characterdetails import CharacterDetails |
35 | | -from .characterskill import CharacterSkill |
36 | | -from .contract import Contract |
37 | | -from .contractitem import ContractItem |
38 | | -from .corporationstanding import CorporationStanding |
39 | | -from .corpwallet import CorpWallet |
40 | | -from .event import Event |
41 | | -from .factionstanding import FactionStanding |
42 | | -from .industryjob import IndustryJob |
43 | | -from .journalentry import JournalEntry |
44 | | -from .marketorder import MarketOrder |
45 | | -from .pricehistory import PriceHistory |
46 | | -from .skillplan import SkillPlan |
47 | | -from .skillqueue import SkillQueue |
48 | | -from .spentry import SPEntry |
49 | | -from .spremap import SPRemap |
50 | | -from .spskill import SPSkill |
51 | | -from .taskstate import TaskState |
52 | | -from .transaction import Transaction |
53 | | -from .userprofile import UserProfile |
| 26 | +from thing.models.apikey import APIKey |
| 27 | +from thing.models.apikeyfailure import APIKeyFailure |
| 28 | +from thing.models.asset import Asset |
| 29 | +from thing.models.assetsummary import AssetSummary |
| 30 | +from thing.models.blueprintcomponent import BlueprintComponent |
| 31 | +from thing.models.blueprintinstance import BlueprintInstance |
| 32 | +from thing.models.campaign import Campaign |
| 33 | +from thing.models.characterconfig import CharacterConfig |
| 34 | +from thing.models.characterdetails import CharacterDetails |
| 35 | +from thing.models.characterskill import CharacterSkill |
| 36 | +from thing.models.contract import Contract |
| 37 | +from thing.models.contractitem import ContractItem |
| 38 | +from thing.models.corporationstanding import CorporationStanding |
| 39 | +from thing.models.corpwallet import CorpWallet |
| 40 | +from thing.models.event import Event |
| 41 | +from thing.models.factionstanding import FactionStanding |
| 42 | +from thing.models.industryjob import IndustryJob |
| 43 | +from thing.models.journalentry import JournalEntry |
| 44 | +from thing.models.marketorder import MarketOrder |
| 45 | +from thing.models.pricehistory import PriceHistory |
| 46 | +from thing.models.skillplan import SkillPlan |
| 47 | +from thing.models.skillqueue import SkillQueue |
| 48 | +from thing.models.spentry import SPEntry |
| 49 | +from thing.models.spremap import SPRemap |
| 50 | +from thing.models.spskill import SPSkill |
| 51 | +from thing.models.taskstate import TaskState |
| 52 | +from thing.models.transaction import Transaction |
| 53 | +from thing.models.userprofile import UserProfile |
0 commit comments