blob: 7a992f2b76fa12aafaca8b1ce88a7b15d24d85e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package commands
import "github.com/go-swagger/go-swagger/cmd/swagger/commands/initcmd"
// InitCmd is a command namespace for initializing things like a swagger spec.
type InitCmd struct {
Model *initcmd.Spec `command:"spec"`
}
// Execute provides default empty implementation
func (i *InitCmd) Execute(args []string) error {
return nil
}
|