view cmd.go @ 16:b391a8ad61de default tip

...
author anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Sun, 03 Jan 2021 08:48:40 +0900
parents 76695bcbe426
children
line wrap: on
line source

package growsync

import (
	"context"
	"io"
)

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