mirror of
https://github.com/Dokploy/cli.git
synced 2026-07-17 20:05:23 +02:00
feat: add check server command
This commit is contained in:
19
src/commands/hello/world.ts
Normal file
19
src/commands/hello/world.ts
Normal file
@@ -0,0 +1,19 @@
|
||||
import {Command} from '@oclif/core'
|
||||
|
||||
export default class World extends Command {
|
||||
static args = {}
|
||||
|
||||
static description = 'Say hello world'
|
||||
|
||||
static examples = [
|
||||
`<%= config.bin %> <%= command.id %>
|
||||
hello world! (./src/commands/hello/world.ts)
|
||||
`,
|
||||
]
|
||||
|
||||
static flags = {}
|
||||
|
||||
async run(): Promise<void> {
|
||||
this.log('hello world! (./src/commands/hello/world.ts)')
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user