Mercurial > hg > Members > anatofuz > growsync
view cmd.go @ 15:0dc44ee170b4
mkdir
author | anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Sun, 03 Jan 2021 08:46:08 +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 }