diff --git a/images/github.png b/images/github.png new file mode 100644 index 0000000..18bbd61 Binary files /dev/null and b/images/github.png differ diff --git a/src/github/index.js b/src/github/index.js new file mode 100644 index 0000000..8c46508 --- /dev/null +++ b/src/github/index.js @@ -0,0 +1,19 @@ +'use strict' + +const config = require('../config') + +const getIcon = () => { + return { + path: 'icons/github.png' + } +} + +const CONFIG_TOKEN = 'github.token' + +exports.getIcon = getIcon + +const getTasks = async () => { + return [] +} + +exports.getTasks = getTasks