├── LICENSE ├── Procfile ├── README.md ├── app.json ├── creds.py ├── images (1)~2.jpg ├── logo.jpg ├── main.py ├── process.py ├── requirements.txt └── runtime.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentnova/KnowhoBot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 main.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentnova/KnowhoBot/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentnova/KnowhoBot/HEAD/app.json -------------------------------------------------------------------------------- /creds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentnova/KnowhoBot/HEAD/creds.py -------------------------------------------------------------------------------- /images (1)~2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentnova/KnowhoBot/HEAD/images (1)~2.jpg -------------------------------------------------------------------------------- /logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentnova/KnowhoBot/HEAD/logo.jpg -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentnova/KnowhoBot/HEAD/main.py -------------------------------------------------------------------------------- /process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentnova/KnowhoBot/HEAD/process.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentnova/KnowhoBot/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.7.5 2 | --------------------------------------------------------------------------------