view cmd_pull.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
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
}