mirror of
https://gitee.com/sui-feng-cb/AzurLaneAutoScript1
synced 2026-03-09 18:39:04 +08:00
20 lines
588 B
Python
20 lines
588 B
Python
|
|
from module.base.base import ModuleBase
|
||
|
|
from module.battle_pass.battle_pass import BattlePass
|
||
|
|
from module.data_key.data_key import DataKey
|
||
|
|
from module.mail.mail import Mail
|
||
|
|
from module.supply_pack.supply_pack import SupplyPack
|
||
|
|
|
||
|
|
|
||
|
|
class Freebies(ModuleBase):
|
||
|
|
def run(self):
|
||
|
|
"""
|
||
|
|
Run all freebie related modules
|
||
|
|
"""
|
||
|
|
BattlePass(self.config, self.device).run()
|
||
|
|
DataKey(self.config, self.device).run()
|
||
|
|
Mail(self.config, self.device).run()
|
||
|
|
SupplyPack(self.config, self.device).run()
|
||
|
|
|
||
|
|
self.config.task_delay(server_update=True)
|
||
|
|
|