UNPKG

ctql

Version:

Clock Time Quest Log: Interactive, RPG-style quest tracker for Solo Devs

14 lines (11 loc) 280 B
import { gitGuard } from "./git_guard"; import { gitCheckout } from "./gitCheckout"; import { gitInit } from "./initGit"; import { gitCommit } from "./gitCommit"; const git = { guard: gitGuard, checkout: gitCheckout, init: gitInit, commit: gitCommit, }; export default git;