18 lines
349 B
Go
18 lines
349 B
Go
package info
|
|
|
|
import (
|
|
"github.com/alecthomas/kingpin"
|
|
"github.com/apex/log"
|
|
"github.com/ooni/probe-cli/internal/cli/root"
|
|
)
|
|
|
|
func init() {
|
|
cmd := root.Command("info", "Display information about OONI Probe")
|
|
|
|
cmd.Action(func(_ *kingpin.ParseContext) error {
|
|
log.Info("Info")
|
|
log.Error("this function is not implemented")
|
|
return nil
|
|
})
|
|
}
|