-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfiletree.ini
88 lines (88 loc) · 3.39 KB
/
filetree.ini
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
scorg-news
├── .env
├── .github
│ └── workflows
│ └── main.yml
├── .gitignore
├── Dockerfile
├── LICENSE
├── README.md
├── __pycache__
│ └── testsuite.cpython-310.pyc
├── app
│ └── data
│ └── subscriptions.db
├── client_secret.json
├── main.py
├── requirements.txt
├── src
│ ├── __init__.py
│ ├── __pycache__
│ │ ├── __init__.cpython-310.pyc
│ │ ├── commands.cpython-310.pyc
│ │ ├── config.cpython-310.pyc
│ │ ├── database.cpython-310.pyc
│ │ ├── discord_utils.cpython-310.pyc
│ │ ├── events.cpython-310.pyc
│ │ ├── openai_utils.cpython-310.pyc
│ │ └── test_generate_thread_name.cpython-310.pyc
│ ├── commands
│ │ ├── __init__.py
│ │ ├── __pycache__
│ │ │ └── __init__.cpython-310.pyc
│ │ ├── subscribe
│ │ │ ├── __pycache__
│ │ │ │ ├── subscribe.cpython-310.pyc
│ │ │ │ └── test_subscribe.cpython-310.pyc
│ │ │ ├── subscribe.py
│ │ │ └── test_subscribe.py
│ │ ├── subscribe_dropdown
│ │ │ ├── __pycache__
│ │ │ │ └── subscribe_dropdown.cpython-310.pyc
│ │ │ └── subscribe_dropdown.py
│ │ ├── test_access
│ │ │ ├── __pycache__
│ │ │ │ └── test_access.cpython-310.pyc
│ │ │ └── test_access.py
│ │ ├── unsubscribe
│ │ │ ├── __pycache__
│ │ │ │ ├── test_unsubscribe.cpython-310.pyc
│ │ │ │ └── unsubscribe.cpython-310.pyc
│ │ │ ├── test_unsubscribe.py
│ │ │ └── unsubscribe.py
│ │ ├── unsubscribe_dropdown
│ │ │ ├── __pycache__
│ │ │ │ └── unsubscribe_dropdown.cpython-310.pyc
│ │ │ └── unsubscribe_dropdown.py
│ │ └── view_subscriptions
│ │ ├── __pycache__
│ │ │ └── view_subscriptions.cpython-310.pyc
│ │ └── view_subscriptions.py
│ ├── config.py
│ ├── database.py
│ ├── discord_utils.py
│ ├── events
│ │ ├── __init__.py
│ │ ├── __pycache__
│ │ │ └── __init__.cpython-310.pyc
│ │ ├── check_youtube
│ │ ├── on_message
│ │ │ ├── __pycache__
│ │ │ │ └── on_message.cpython-310.pyc
│ │ │ └── on_message.py
│ │ └── on_ready
│ │ ├── __pycache__
│ │ │ └── on_ready.cpython-310.pyc
│ │ └── on_ready.py
│ ├── openai_utils
│ │ └── generate_thread_name
│ │ ├── __pycache__
│ │ │ └── generate_thread_name.cpython-310.pyc
│ │ ├── generate_thread_name.py
│ │ └── test_generate_thread_name.py
│ └── youtube_utils
│ ├── __pycache__
│ │ └── youtube_checker.cpython-310.pyc
│ ├── youtube_checker.py
│ └── youtube_oauth.py
└── testsuite.py