import { defineCommand } from "politty"; import { syncCheckCommand } from "./sync-check"; export const ghActionsCommand = defineCommand({ name: "gh-actions", description: "GitHub Actions template management", subCommands: { "sync-check": syncCheckCommand, }, });