mirror of
https://github.com/pockethost/pockethost.git
synced 2025-03-30 15:08:30 +00:00
chore(pockethost): fix PocketBaseCommand paths
This commit is contained in:
parent
a22db32e08
commit
53b29e456f
@ -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())
|
||||
|
@ -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()
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user