Add extra commands funcs (#2279)

pull/2280/head
Jeff Mitchell 4 years ago committed by GitHub
parent b3ec54e81b
commit 1ef6e87a26
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1127,4 +1127,12 @@ func initCommands(ui, serverCmdUi cli.Ui, runOpts *RunOptions) {
}, nil
},
}
for _, fn := range extraCommandsFuncs {
if fn != nil {
fn()
}
}
}
var extraCommandsFuncs []func()

Loading…
Cancel
Save