Commits · ampify

tav  ·  96e7905f65cc3517b8146dc780c4dca0a2722301  ·  ampify  ·  github 1311812910

Updated the main amp commands definition.

Changes

src/amp/amp/amp.go
......@@ -13,13 +13,12 @@ func main() {
1313
 		"build":    ampBuild,
1414
 		"frontend": ampFrontend,
1515
 		"init":     ampInit,
16
+		"master":   ampMaster,
1617
 		"node":     ampNode,
1718
 		"pull":     ampPull,
1819
 		"push":     ampPush,
19
-		"repo":     ampRepo,
2020
 		"review":   ampReview,
2121
 		"run":      ampRun,
22
-		"store":    ampStore,
2322
 		"test":     ampTest,
2423
 	}
2524
 
......@@ -27,13 +26,12 @@ func main() {
2726
 		"build":    "build an amp nodule",
2827
 		"frontend": "run an amp frontend",
2928
 		"init":     "initialise an instance",
29
+		"master":   "run an amp master node",
3030
 		"node":     "run an amp node",
31
-		"pull":     "pull from an amp repo",
32
-		"push":     "push to an amp repo",
33
-		"repo":     "run an amp repo",
34
-		"review":   "review an amp repo",
31
+		"pull":     "pull from an amp master node",
32
+		"push":     "push to an amp master node",
33
+		"review":   "review an amp nodule",
3534
 		"run":      "run a combined single-server instance",
36
-		"store":    "run an amp store",
3735
 		"test":     "test an amp nodule",
3836
 		"version":  "show the version number and exit",
3937
 	}