godlint-cli 0.4.0

Command-line interface for Godlint.
1
2
3
4
5
import { exec } from "node:child_process";

export function deploy(branch) {
  exec(`git checkout ${branch}`);
}