-
Notifications
You must be signed in to change notification settings - Fork 0
/
filetree.txt
52 lines (52 loc) · 1.8 KB
/
filetree.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
├── fastshot
│ ├──__init__.py
│ ├── config.ini
│ ├── _config_reset.ini
│ ├── image_window.py
│ ├── main.py
│ ├── paint_tool.py
│ ├── plugin_ocr.py
│ ├── snipping_tool.py
│ ├── text_tool.py
│ ├── window_control.py
│ ├── web
│ │ ├── web_app.py
│ │ ├── config_manager.py
│ │ ├── templates/
│ │ │ ├── layout.html
│ │ │ ├── config.html
│ │ │ ├── dashboard.html
│ │ │ └── keyboard.html
│ │ └── static
│ │ ├── css
│ │ │ ├── bootstrap.min.css
│ │ │ ├── ... # 其他样式文件
│ │ │ └── styles.css
│ │ ├── js
│ │ │ ├── jquery.min.js
│ │ │ ├── bootstrap.bundle.min.js
│ │ │ ├── hotkey_capture.js
│ │ │ ├── keyboard_visualization.js
│ │ │ ├── ... # 其他脚本文件
│ │ │ └── color_conversion.js
│ │ └── images
│ │ └── shortcuts.png
│ ├── .github
│ │ └── workflows
│ │ └──python-publish.yml
│ └── resources
│ ├── ai_icon.png
│ ├── close_icon.png
│ ├── minimize_icon.png
│ ├── paddleocr.zip
│ ├── shortcuts.png
│ ├── title_icon.png
│ ├── user_icon.png
│ └── tk_color_chart.png
│
├── run.py
├── setup.py
├── pyproject.toml
├── README.md
├── requirements.txt
└── LICENSE