├── .github └── workflows │ └── test.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── REFERENCE.md ├── package.json ├── source ├── main.ts ├── routes │ ├── info.ts │ ├── installs.ts │ ├── stats.ts │ └── status.ts └── utils │ ├── app.ts │ ├── info.ts │ ├── installs.ts │ ├── stats.ts │ └── status.ts └── tsconfig.json /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olympta/API/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olympta/API/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olympta/API/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olympta/API/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olympta/API/HEAD/README.md -------------------------------------------------------------------------------- /REFERENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olympta/API/HEAD/REFERENCE.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olympta/API/HEAD/package.json -------------------------------------------------------------------------------- /source/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olympta/API/HEAD/source/main.ts -------------------------------------------------------------------------------- /source/routes/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olympta/API/HEAD/source/routes/info.ts -------------------------------------------------------------------------------- /source/routes/installs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olympta/API/HEAD/source/routes/installs.ts -------------------------------------------------------------------------------- /source/routes/stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olympta/API/HEAD/source/routes/stats.ts -------------------------------------------------------------------------------- /source/routes/status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olympta/API/HEAD/source/routes/status.ts -------------------------------------------------------------------------------- /source/utils/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olympta/API/HEAD/source/utils/app.ts -------------------------------------------------------------------------------- /source/utils/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olympta/API/HEAD/source/utils/info.ts -------------------------------------------------------------------------------- /source/utils/installs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olympta/API/HEAD/source/utils/installs.ts -------------------------------------------------------------------------------- /source/utils/stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olympta/API/HEAD/source/utils/stats.ts -------------------------------------------------------------------------------- /source/utils/status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olympta/API/HEAD/source/utils/status.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olympta/API/HEAD/tsconfig.json --------------------------------------------------------------------------------