view cmd.go @ 3:e4088b031eba

add cmd
author anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Tue, 31 Mar 2020 12:17:52 +0900
parents
children 8bc574052fcb
line wrap: on
line source

package lectable

import "io"

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