human/action_handler/action_manager.py

11 lines
180 B
Python
Raw Normal View History

2024-12-23 23:37:03 +00:00
#encoding = utf8
from action_handler.ppt import PPTAction
class ActionManager:
def __init__(self):
self.ppt_action = PPTAction()
def __del__(self):
pass