wm/src/cmd/cmd.go

13 lines
133 B
Go
Raw Normal View History

2022-12-26 02:18:39 +00:00
package cmd
import "context"
type Context struct {
Debug bool
context.Context
}
type Cmd interface {
Run(ctx *Context) error
}