human/action_handler/action_manager.py
2024-12-24 07:37:03 +08:00

11 lines
180 B
Python

#encoding = utf8
from action_handler.ppt import PPTAction
class ActionManager:
def __init__(self):
self.ppt_action = PPTAction()
def __del__(self):
pass