mirror of
https://github.com/pockethost/pockethost.git
synced 2025-07-09 06:12:31 +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 { Command } from 'commander'
|
||||||
import { UpdateCommand } from './UpdateCommand'
|
import { UpdateCommand } from './UpdateCommand'
|
||||||
|
|
||||||
export const GobotCommand = () => {
|
export const PocketBaseCommand = () => {
|
||||||
const cmd = new Command(`pocketbase`).description(`PocketBase commands`)
|
const cmd = new Command(`pocketbase`).description(`PocketBase commands`)
|
||||||
|
|
||||||
cmd.addCommand(UpdateCommand())
|
cmd.addCommand(UpdateCommand())
|
||||||
|
@ -14,9 +14,9 @@ import {
|
|||||||
import { GobotService } from '../services/GobotService'
|
import { GobotService } from '../services/GobotService'
|
||||||
import { EdgeCommand } from './commands/EdgeCommand'
|
import { EdgeCommand } from './commands/EdgeCommand'
|
||||||
import { FirewallCommand } from './commands/FirewallCommand'
|
import { FirewallCommand } from './commands/FirewallCommand'
|
||||||
import { GobotCommand } from './commands/GobotCommand'
|
|
||||||
import { HealthCommand } from './commands/HealthCommand'
|
import { HealthCommand } from './commands/HealthCommand'
|
||||||
import { MothershipCommand } from './commands/MothershipCommand'
|
import { MothershipCommand } from './commands/MothershipCommand'
|
||||||
|
import { PocketBaseCommand } from './commands/PocketBaseCommand'
|
||||||
import { SendMailCommand } from './commands/SendMailCommand'
|
import { SendMailCommand } from './commands/SendMailCommand'
|
||||||
import { ServeCommand } from './commands/ServeCommand'
|
import { ServeCommand } from './commands/ServeCommand'
|
||||||
|
|
||||||
@ -44,7 +44,7 @@ export const main = async () => {
|
|||||||
.addCommand(FirewallCommand())
|
.addCommand(FirewallCommand())
|
||||||
.addCommand(SendMailCommand())
|
.addCommand(SendMailCommand())
|
||||||
.addCommand(ServeCommand())
|
.addCommand(ServeCommand())
|
||||||
.addCommand(GobotCommand())
|
.addCommand(PocketBaseCommand())
|
||||||
|
|
||||||
await program.parseAsync()
|
await program.parseAsync()
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user