Files
revel-cmd/model/command/version.go
notzippy@gmail.com 33abc47c7a Fixed remaining test
2020-04-26 23:00:51 -07:00

9 lines
302 B
Go

package command
type (
Version struct {
ImportCommand
Update bool `short:"u" long:"update" description:"Update the framework and modules" required:"false"`
UpdateVersion string `long:"update-version" description:"Specify the version the revel and app will be switched to" required:"false"`
}
)