Mercurial > hg > Members > anatofuz > growsync
annotate 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 (2020-12-17) |
parents | 76695bcbe426 |
children |
rev | line source |
---|---|
1 | 1 package growsync |
2 | |
3 import ( | |
4 "context" | |
5 "io" | |
6 ) | |
7 | |
8 type pullCmd struct{} | |
9 | |
10 func (pc *pullCmd) name() string { | |
11 return "pull" | |
12 } | |
13 | |
14 func (pc *pullCmd) description() string { | |
15 return "pull from growi web app" | |
16 } | |
17 | |
18 func (pc *pullCmd) run(context.Context, []string, io.Writer, io.Writer) error { | |
19 return nil | |
20 } |