提交 eddb3979 编写于 作者: F feilong

refresh

上级 d4495b38
.vscode
.idea
.DS_Store
__pycache__
*.pyc
*.zip
*.out
\ No newline at end of file
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
'''
@File : combine_tree.py
@Time : 2022/01/20 16:55:49
@Author : Lu Xin
@Contact : luxin@csdn.net
'''
# here put the import lib
from src.construct_tree import ConstructTree
def main():
init_tree_json = ConstructTree()
init_tree_json.load()
init_tree_json.construct_tree_from_json()
init_tree_json.create_contents()
if __name__=="__main__":
main()
\ No newline at end of file
from skill_tree.tree import TreeWalker
if __name__ == '__main__':
walker = TreeWalker("data", "cloud_native", "云原生")
walker.walk()
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册