├── .gitignore ├── LICENSE ├── README.md ├── bot.py ├── config.sample.yaml ├── remove_server.py ├── remove_user.py ├── reset_traffic.py ├── server.py ├── server_manager.py ├── sqlitedb.py ├── user.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlfvpn/x-ui-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlfvpn/x-ui-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlfvpn/x-ui-plugin/HEAD/README.md -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlfvpn/x-ui-plugin/HEAD/bot.py -------------------------------------------------------------------------------- /config.sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlfvpn/x-ui-plugin/HEAD/config.sample.yaml -------------------------------------------------------------------------------- /remove_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlfvpn/x-ui-plugin/HEAD/remove_server.py -------------------------------------------------------------------------------- /remove_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlfvpn/x-ui-plugin/HEAD/remove_user.py -------------------------------------------------------------------------------- /reset_traffic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlfvpn/x-ui-plugin/HEAD/reset_traffic.py -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlfvpn/x-ui-plugin/HEAD/server.py -------------------------------------------------------------------------------- /server_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlfvpn/x-ui-plugin/HEAD/server_manager.py -------------------------------------------------------------------------------- /sqlitedb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlfvpn/x-ui-plugin/HEAD/sqlitedb.py -------------------------------------------------------------------------------- /user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlfvpn/x-ui-plugin/HEAD/user.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlfvpn/x-ui-plugin/HEAD/utils.py --------------------------------------------------------------------------------