Files
coder/cli/templateplan.go
2023-03-23 17:42:20 -05:00

19 lines
353 B
Go

package cli
import (
"github.com/coder/coder/cli/clibase"
)
func (*RootCmd) templatePlan() *clibase.Cmd {
return &clibase.Cmd{
Use: "plan <directory>",
Middleware: clibase.Chain(
clibase.RequireNArgs(1),
),
Short: "Plan a template push from the current directory",
Handler: func(inv *clibase.Invocation) error {
return nil
},
}
}