snapcube
Version:
📦 Snapshot, backup, and restore any project — binary-safe, fast, and simple CLI.
15 lines • 535 B
TypeScript
/**
* Barrel file for SnapCube commands
* --------------------------------
* This file re-exports all the main CLI actions for easier imports.
* Instead of importing each function individually from its file,
* consumers can simply import them from "commands".
*
* Example:
* import { cloneProject, createProject, cloneGithubRepo } from "../commands";
*/
export * from "./cloneProject";
export * from "./createProject";
export * from "./cloneGithubRepo";
export * from "./cloneGitlabRepo";
//# sourceMappingURL=index.d.ts.map