23 lines
451 B
Python
23 lines
451 B
Python
|
# -------------------------------
|
||
|
# Difficult Rocket
|
||
|
# Copyright © 2021 by shenjackyuanjie
|
||
|
# All rights reserved
|
||
|
# -------------------------------
|
||
|
|
||
|
"""
|
||
|
writen by shenjackyuanjie
|
||
|
mail: 3695888@qq.com
|
||
|
github: @shenjackyuanjie
|
||
|
gitee: @shenjackyuanjie
|
||
|
"""
|
||
|
|
||
|
import line
|
||
|
|
||
|
|
||
|
class CommandTree:
|
||
|
def __init__(self, command_tree_dict):
|
||
|
self.command_tree_dict = command_tree_dict
|
||
|
|
||
|
def parse(self, command: line.CommandText):
|
||
|
pass
|