chore(pockethost): fix PocketBaseCommand paths

This commit is contained in:
Ben Allfree 2024-08-06 11:27:18 +00:00
parent a22db32e08
commit 53b29e456f
2 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
import { Command } from 'commander'
import { UpdateCommand } from './UpdateCommand'
export const GobotCommand = () => {
export const PocketBaseCommand = () => {
const cmd = new Command(`pocketbase`).description(`PocketBase commands`)
cmd.addCommand(UpdateCommand())

View File

@ -14,9 +14,9 @@ import {
import { GobotService } from '../services/GobotService'
import { EdgeCommand } from './commands/EdgeCommand'
import { FirewallCommand } from './commands/FirewallCommand'
import { GobotCommand } from './commands/GobotCommand'
import { HealthCommand } from './commands/HealthCommand'
import { MothershipCommand } from './commands/MothershipCommand'
import { PocketBaseCommand } from './commands/PocketBaseCommand'
import { SendMailCommand } from './commands/SendMailCommand'
import { ServeCommand } from './commands/ServeCommand'
@ -44,7 +44,7 @@ export const main = async () => {
.addCommand(FirewallCommand())
.addCommand(SendMailCommand())
.addCommand(ServeCommand())
.addCommand(GobotCommand())
.addCommand(PocketBaseCommand())
await program.parseAsync()
}