mirror of
https://github.com/coder/coder.git
synced 2025-07-06 15:41:45 +00:00
19 lines
353 B
Go
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
|
|
},
|
|
}
|
|
}
|