view cmd_root.go @ 1:76695bcbe426

write cmd
author anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Tue, 01 Dec 2020 20:30:06 +0900
parents
children 3032e9f78e4b
line wrap: on
line source

package growsync

import (
	"context"
	"io"
)

type rootCmd struct{}

func (pc *rootCmd) name() string {
	return "root"
}

func (pc *rootCmd) description() string {
	return "root from growi web app"
}

func (pc *rootCmd) run(context.Context, []string, io.Writer, io.Writer) error {
	return nil
}