13 lines
576 B
Python
13 lines
576 B
Python
![]() |
from .resource import *
|
||
|
|
||
|
|
||
|
class V1(object):
|
||
|
def __init__(self, config: Config) -> None:
|
||
|
self.aily_session: AilySession = AilySession(config)
|
||
|
self.aily_session_aily_message: AilySessionAilyMessage = AilySessionAilyMessage(config)
|
||
|
self.aily_session_run: AilySessionRun = AilySessionRun(config)
|
||
|
self.app_data_asset: AppDataAsset = AppDataAsset(config)
|
||
|
self.app_data_asset_tag: AppDataAssetTag = AppDataAssetTag(config)
|
||
|
self.app_knowledge: AppKnowledge = AppKnowledge(config)
|
||
|
self.app_skill: AppSkill = AppSkill(config)
|