forked from Dniel97/artemis
12 lines
299 B
Python
12 lines
299 B
Python
|
from core.data import Data
|
||
|
from core.config import CoreConfig
|
||
|
|
||
|
from .schema import *
|
||
|
|
||
|
|
||
|
class SaoData(Data):
|
||
|
def __init__(self, cfg: CoreConfig) -> None:
|
||
|
super().__init__(cfg)
|
||
|
|
||
|
self.profile = SaoProfileData(cfg, self.session)
|
||
|
self.static = SaoStaticData(cfg, self.session)
|