cli/mtool/handler.go

11 lines
147 B
Go
Raw Permalink Normal View History

package mtool
type Handler interface {
Handle(*Flags)
}
type HandlerFunc func(*Flags)
func (fn HandlerFunc) Handle(flags *Flags) {
fn(flags)
}