1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-14 18:56:02 +08:00
Files
AzurLaneAutoScript/module/daemon/force_stop.py

14 lines
344 B
Python
Raw Normal View History

2021-12-12 16:42:22 +08:00
from module.handler.login import LoginHandler
from module.logger import logger
class ForceStop(LoginHandler):
def force_stop(self):
logger.hr('Force Stop AzurLane', level=1)
self.device.app_stop()
logger.info('Force Stop finished')
if __name__ == '__main__':
ForceStop('alas', task='ForceStop').force_stop()