mirror of
https://github.com/pockethost/pockethost.git
synced 2025-11-27 07:48:38 +00:00
14 lines
267 B
TypeScript
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
|
|
}
|