├── .gitignore ├── README.md ├── app.js ├── conf.sample ├── index.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eskerda/slack-keep-presence/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eskerda/slack-keep-presence/HEAD/app.js -------------------------------------------------------------------------------- /conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eskerda/slack-keep-presence/HEAD/conf.sample -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eskerda/slack-keep-presence/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eskerda/slack-keep-presence/HEAD/package.json --------------------------------------------------------------------------------