view cmd.go @ 24:841aedb7bbfd

update
author anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Fri, 03 Apr 2020 07:45:03 +0900
parents 8bc574052fcb
children
line wrap: on
line source

package lectable

import (
	"context"
	"io"
)

type cmd interface {
	name() string
	description() string
	run(context.Context, []string, io.Writer, io.Writer) error
}