view cmd_pull.go @ 15:0dc44ee170b4

mkdir
author anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Sun, 03 Jan 2021 08:46:08 +0900 (2021-01-02)
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
}