Implement quick and dirty measurement listing
This commit is contained in:
parent
04eb07624c
commit
eb4e6988b3
3 changed files with 106 additions and 50 deletions
|
|
@ -10,7 +10,12 @@ func init() {
|
|||
cmd := root.Command("show", "Show a specific measurement")
|
||||
|
||||
cmd.Action(func(_ *kingpin.ParseContext) error {
|
||||
log.Info("Show")
|
||||
_, err := root.Init()
|
||||
if err != nil {
|
||||
log.WithError(err).Error("failed to initialize root context")
|
||||
return err
|
||||
}
|
||||
|
||||
return nil
|
||||
})
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue