view cmd.go @ 4:8bc574052fcb

def cmd
author anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Tue, 31 Mar 2020 12:47:04 +0900
parents e4088b031eba
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
}