mirror of https://github.com/codefeathers/mark
Muthu Kumar
7 years ago
2 changed files with 25 additions and 0 deletions
@ -0,0 +1,21 @@ |
|||||
|
const commit = require('./commit'); |
||||
|
|
||||
|
const help = () => { |
||||
|
//TODO
|
||||
|
console.log('Mark -- mark your progress at work.'); |
||||
|
}; |
||||
|
|
||||
|
const login = () => { |
||||
|
//TODO
|
||||
|
}; |
||||
|
|
||||
|
const logout = () => { |
||||
|
//TODO
|
||||
|
}; |
||||
|
|
||||
|
module.exports = { |
||||
|
help, |
||||
|
login, |
||||
|
logout, |
||||
|
commit |
||||
|
} |
@ -0,0 +1,4 @@ |
|||||
|
const commit = args => { |
||||
|
//TODO
|
||||
|
}; |
||||
|
module.exports = commit; |
Loading…
Reference in new issue