├── .gitignore ├── README.md ├── assets ├── image-20231203034133133.png ├── image-20231203034451967.png └── image-20231203042237605.png ├── demo.cast ├── hello_shell.json ├── hello_shell_template.json ├── main.py ├── requirements.txt └── running.json /.gitignore: -------------------------------------------------------------------------------- 1 | cred 2 | 原始数据文件 3 | running.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProbiusOfficial/TCL/HEAD/README.md -------------------------------------------------------------------------------- /assets/image-20231203034133133.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProbiusOfficial/TCL/HEAD/assets/image-20231203034133133.png -------------------------------------------------------------------------------- /assets/image-20231203034451967.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProbiusOfficial/TCL/HEAD/assets/image-20231203034451967.png -------------------------------------------------------------------------------- /assets/image-20231203042237605.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProbiusOfficial/TCL/HEAD/assets/image-20231203042237605.png -------------------------------------------------------------------------------- /demo.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProbiusOfficial/TCL/HEAD/demo.cast -------------------------------------------------------------------------------- /hello_shell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProbiusOfficial/TCL/HEAD/hello_shell.json -------------------------------------------------------------------------------- /hello_shell_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProbiusOfficial/TCL/HEAD/hello_shell_template.json -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProbiusOfficial/TCL/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProbiusOfficial/TCL/HEAD/requirements.txt -------------------------------------------------------------------------------- /running.json: -------------------------------------------------------------------------------- 1 | {} --------------------------------------------------------------------------------