package cmd

import "context"

type Context struct {
	Debug bool
	context.Context
}

type Cmd interface {
	Run(ctx *Context) error
}