carloscuesta/gitmoji-cli

View on GitHub
src/commands/index.js

Summary

Maintainability
A
0 mins
Test Coverage
// @flow
import commit from './commit'
import config from './config'
import hook from './hook'
import list from './list'
import search from './search'
import update from './update'

export default {
  commit,
  config,
  createHook: hook.create,
  list,
  removeHook: hook.remove,
  search,
  update
}