├── .github └── assets │ └── permissions.png ├── .gitignore ├── LICENSE.md ├── README.md └── wisp ├── clientarea.tpl └── wisp.php /.github/assets/permissions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp-gg/whmcs/HEAD/.github/assets/permissions.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # JetBrains 2 | .idea/ -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp-gg/whmcs/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp-gg/whmcs/HEAD/README.md -------------------------------------------------------------------------------- /wisp/clientarea.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp-gg/whmcs/HEAD/wisp/clientarea.tpl -------------------------------------------------------------------------------- /wisp/wisp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp-gg/whmcs/HEAD/wisp/wisp.php --------------------------------------------------------------------------------