view cmd_pull.go @ 10:90376341ed28

...
author anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Tue, 08 Dec 2020 16:14:55 +0900
parents 76695bcbe426
children
line wrap: on
line source

package growsync

import (
	"context"
	"io"
)

type pullCmd struct{}

func (pc *pullCmd) name() string {
	return "pull"
}

func (pc *pullCmd) description() string {
	return "pull from growi web app"
}

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