11 lines
180 B
Python
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
|