├── .gitignore ├── LICENSE ├── README.md ├── config └── default-example.json ├── data ├── demo.json └── train.json ├── index.js ├── package.json └── renovate.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/templates-dev/memorize-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/templates-dev/memorize-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/templates-dev/memorize-bot/HEAD/README.md -------------------------------------------------------------------------------- /config/default-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/templates-dev/memorize-bot/HEAD/config/default-example.json -------------------------------------------------------------------------------- /data/demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/templates-dev/memorize-bot/HEAD/data/demo.json -------------------------------------------------------------------------------- /data/train.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/templates-dev/memorize-bot/HEAD/data/train.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/templates-dev/memorize-bot/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/templates-dev/memorize-bot/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/templates-dev/memorize-bot/HEAD/renovate.json --------------------------------------------------------------------------------