├── .github └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── 6650400i.jpg ├── Dockerfile ├── LICENSE ├── Procfile ├── README.md ├── canvas.js ├── drawer.js ├── generator.js ├── hoshii.js ├── hoshii.png ├── images └── hoshii.png ├── main.js ├── notobk-subset.otf ├── notoserifbk-subset.otf ├── package.json ├── settings.js ├── test.png └── transparent.png /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/5000choyen-api/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | *.code-workspace -------------------------------------------------------------------------------- /6650400i.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/5000choyen-api/HEAD/6650400i.jpg -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/5000choyen-api/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/5000choyen-api/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: node main.js 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/5000choyen-api/HEAD/README.md -------------------------------------------------------------------------------- /canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/5000choyen-api/HEAD/canvas.js -------------------------------------------------------------------------------- /drawer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/5000choyen-api/HEAD/drawer.js -------------------------------------------------------------------------------- /generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/5000choyen-api/HEAD/generator.js -------------------------------------------------------------------------------- /hoshii.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/5000choyen-api/HEAD/hoshii.js -------------------------------------------------------------------------------- /hoshii.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/5000choyen-api/HEAD/hoshii.png -------------------------------------------------------------------------------- /images/hoshii.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/5000choyen-api/HEAD/images/hoshii.png -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/5000choyen-api/HEAD/main.js -------------------------------------------------------------------------------- /notobk-subset.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/5000choyen-api/HEAD/notobk-subset.otf -------------------------------------------------------------------------------- /notoserifbk-subset.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/5000choyen-api/HEAD/notoserifbk-subset.otf -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/5000choyen-api/HEAD/package.json -------------------------------------------------------------------------------- /settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/5000choyen-api/HEAD/settings.js -------------------------------------------------------------------------------- /test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/5000choyen-api/HEAD/test.png -------------------------------------------------------------------------------- /transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/5000choyen-api/HEAD/transparent.png --------------------------------------------------------------------------------