@stevescruz/task-master
Version:
A command-line todo list that allows you to write your tasks, set priorities, view existing tasks and view the next tasks due.
6 lines (5 loc) • 323 B
JavaScript
const makeTaskCommand = require('./makeTaskCommand');
const makeExportCommand = require('./makeExportCommand');
const makeImportCommand = require('./makeImportCommand');
const makeConfigCommand = require('./makeConfigCommand');
module.exports = { makeTaskCommand, makeExportCommand, makeImportCommand, makeConfigCommand };