Files
nhost/cli/cmd/dev/dev.go
2025-10-02 09:13:35 +02:00

16 lines
293 B
Go

package dev
import "github.com/urfave/cli/v3"
func Command() *cli.Command {
return &cli.Command{ //nolint:exhaustruct
Name: "dev",
Aliases: []string{},
Usage: "Operate local development environment",
Commands: []*cli.Command{
CommandCompose(),
CommandHasura(),
},
}
}