view cmd.go @ 15:8313f8fd6a44

add master
author anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Wed, 01 Apr 2020 19:18:40 +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
}