Add dns and resolve commands to ROApi Resolves #2287
Add dns and resolve commands to ROApi Resolves #2287 License: MIT Signed-off-by: Jakub Sztandera <kubuxu@gmail.com>
Jakub Sztandera committed
Feb 4, 2016 at 09:14 UTC
ac37d23662e5deb38cee9815d8d7c162590c492e
1 file changed
+3
-2
core/commands/root.go
+3
-2
@@ -140,6 +140,7 @@ var rootROSubcommands = map[string]*cmds.Command{
140
},
141
"cat": CatCmd,
142
"commands": CommandsDaemonROCmd,
143
+ "dns": DNSCmd,
144
"get": GetCmd,
145
"ls": LsCmd,
146
"name": &cmds.Command{
@@ -156,8 +157,8 @@ var rootROSubcommands = map[string]*cmds.Command{
157
"patch": ocmd.ObjectPatchCmd,
158
},
159
},
159
- "refs": RefsROCmd,
160
- //"resolve": ResolveCmd,
160
+ "refs": RefsROCmd,
161
+ "resolve": ResolveCmd,
162
"version": VersionCmd,
163
}
164