view cmd.go @ 11:e7d9f63d969c

move repository
author anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Tue, 31 Mar 2020 19:15:18 +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
}