view cmd.go @ 14:1e21b0c29775

remove create page msg
author anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Thu, 17 Dec 2020 11:12:04 +0900 (2020-12-17)
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
}