├── .gitignore ├── .idea ├── .gitignore ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── natachat.iml └── vcs.xml ├── LICENSE ├── README.md ├── README_en.md ├── index.html ├── language.json ├── main.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZGIT-Network/NataChat/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZGIT-Network/NataChat/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZGIT-Network/NataChat/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZGIT-Network/NataChat/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZGIT-Network/NataChat/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/natachat.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZGIT-Network/NataChat/HEAD/.idea/natachat.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZGIT-Network/NataChat/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZGIT-Network/NataChat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZGIT-Network/NataChat/HEAD/README.md -------------------------------------------------------------------------------- /README_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZGIT-Network/NataChat/HEAD/README_en.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZGIT-Network/NataChat/HEAD/index.html -------------------------------------------------------------------------------- /language.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZGIT-Network/NataChat/HEAD/language.json -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZGIT-Network/NataChat/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZGIT-Network/NataChat/HEAD/requirements.txt --------------------------------------------------------------------------------