2024-06-28 14:23:38 -07:00

14 lines
267 B
TypeScript

import { Command } from 'commander'
import { ServeCommand } from './ServeCommand'
type Options = {
debug: boolean
}
export const FtpCommand = () => {
const cmd = new Command(`ftp`)
.description(`FTP commands`)
.addCommand(ServeCommand())
return cmd
}