├── .env.example ├── .gitattributes ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── docker-compose.prod.yml ├── docker-compose.yml ├── inbounds_gen.sh ├── requirements.txt ├── setup.sh └── src ├── __init__.py ├── data ├── __init__.py ├── db │ ├── __init__.py │ └── get.py ├── engine │ ├── __init__.py │ └── xui.py ├── models │ ├── __init__.py │ ├── admin.py │ ├── clientconfig.py │ └── user.py └── repo │ ├── __init__.py │ ├── admin.py │ ├── clientconfig.py │ └── user.py ├── infrastracture ├── __init__.py ├── config │ ├── __init__.py │ └── env.py ├── db │ ├── __init__.py │ └── sqlite.py └── logger │ ├── __init__.py │ └── std.py ├── logic ├── __init__.py ├── admin.py ├── client.py ├── models │ ├── __init__.py │ ├── client.py │ └── user.py └── user.py ├── main.py └── presentation ├── __init__.py ├── callbacks.py ├── filters ├── __init__.py └── chat_type.py ├── handlers.py ├── kb.py ├── states.py └── text.py /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team418-git/easyXray/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team418-git/easyXray/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team418-git/easyXray/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team418-git/easyXray/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team418-git/easyXray/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team418-git/easyXray/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team418-git/easyXray/HEAD/docker-compose.prod.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team418-git/easyXray/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /inbounds_gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team418-git/easyXray/HEAD/inbounds_gen.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team418-git/easyXray/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team418-git/easyXray/HEAD/setup.sh -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/data/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/data/db/get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team418-git/easyXray/HEAD/src/data/db/get.py -------------------------------------------------------------------------------- /src/data/engine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/data/engine/xui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team418-git/easyXray/HEAD/src/data/engine/xui.py -------------------------------------------------------------------------------- /src/data/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/data/models/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team418-git/easyXray/HEAD/src/data/models/admin.py -------------------------------------------------------------------------------- /src/data/models/clientconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team418-git/easyXray/HEAD/src/data/models/clientconfig.py -------------------------------------------------------------------------------- /src/data/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team418-git/easyXray/HEAD/src/data/models/user.py -------------------------------------------------------------------------------- /src/data/repo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/data/repo/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team418-git/easyXray/HEAD/src/data/repo/admin.py -------------------------------------------------------------------------------- /src/data/repo/clientconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team418-git/easyXray/HEAD/src/data/repo/clientconfig.py -------------------------------------------------------------------------------- /src/data/repo/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team418-git/easyXray/HEAD/src/data/repo/user.py -------------------------------------------------------------------------------- /src/infrastracture/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/infrastracture/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team418-git/easyXray/HEAD/src/infrastracture/config/__init__.py -------------------------------------------------------------------------------- /src/infrastracture/config/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team418-git/easyXray/HEAD/src/infrastracture/config/env.py -------------------------------------------------------------------------------- /src/infrastracture/db/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team418-git/easyXray/HEAD/src/infrastracture/db/__init__.py -------------------------------------------------------------------------------- /src/infrastracture/db/sqlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team418-git/easyXray/HEAD/src/infrastracture/db/sqlite.py -------------------------------------------------------------------------------- /src/infrastracture/logger/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team418-git/easyXray/HEAD/src/infrastracture/logger/__init__.py -------------------------------------------------------------------------------- /src/infrastracture/logger/std.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team418-git/easyXray/HEAD/src/infrastracture/logger/std.py -------------------------------------------------------------------------------- /src/logic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team418-git/easyXray/HEAD/src/logic/__init__.py -------------------------------------------------------------------------------- /src/logic/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team418-git/easyXray/HEAD/src/logic/admin.py -------------------------------------------------------------------------------- /src/logic/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team418-git/easyXray/HEAD/src/logic/client.py -------------------------------------------------------------------------------- /src/logic/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/logic/models/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team418-git/easyXray/HEAD/src/logic/models/client.py -------------------------------------------------------------------------------- /src/logic/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team418-git/easyXray/HEAD/src/logic/models/user.py -------------------------------------------------------------------------------- /src/logic/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team418-git/easyXray/HEAD/src/logic/user.py -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team418-git/easyXray/HEAD/src/main.py -------------------------------------------------------------------------------- /src/presentation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/presentation/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team418-git/easyXray/HEAD/src/presentation/callbacks.py -------------------------------------------------------------------------------- /src/presentation/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/presentation/filters/chat_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team418-git/easyXray/HEAD/src/presentation/filters/chat_type.py -------------------------------------------------------------------------------- /src/presentation/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team418-git/easyXray/HEAD/src/presentation/handlers.py -------------------------------------------------------------------------------- /src/presentation/kb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team418-git/easyXray/HEAD/src/presentation/kb.py -------------------------------------------------------------------------------- /src/presentation/states.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team418-git/easyXray/HEAD/src/presentation/states.py -------------------------------------------------------------------------------- /src/presentation/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team418-git/easyXray/HEAD/src/presentation/text.py --------------------------------------------------------------------------------