504a4e79d4
* feat: sketch out periodic command * feat: sketch out periodic command for macOS * feat: implement darwin's launch agent * refactor: better way to run on darwin Make sure we have code that builds on all platforms. * fix(run): max 10 URLs with darwin in unattended mode * feat: add support for seeing/streaming logs * feat: implement the status command and add usage hints * feat(periodic): run onboarding if needed * fix: no too confusing function names * fix: s/periodic/autorun/ Discussed earlier this morning with @hellais. * fix: we cannot show logs before Big Sur Bug reported by @hellais.
26 lines
856 B
Go
26 lines
856 B
Go
package main
|
|
|
|
import (
|
|
"github.com/apex/log"
|
|
"github.com/ooni/probe-cli/internal/cli/app"
|
|
_ "github.com/ooni/probe-cli/internal/cli/autorun"
|
|
_ "github.com/ooni/probe-cli/internal/cli/geoip"
|
|
_ "github.com/ooni/probe-cli/internal/cli/info"
|
|
_ "github.com/ooni/probe-cli/internal/cli/list"
|
|
_ "github.com/ooni/probe-cli/internal/cli/onboard"
|
|
_ "github.com/ooni/probe-cli/internal/cli/reset"
|
|
_ "github.com/ooni/probe-cli/internal/cli/rm"
|
|
_ "github.com/ooni/probe-cli/internal/cli/run"
|
|
_ "github.com/ooni/probe-cli/internal/cli/show"
|
|
_ "github.com/ooni/probe-cli/internal/cli/upload"
|
|
_ "github.com/ooni/probe-cli/internal/cli/version"
|
|
"github.com/ooni/probe-cli/internal/crashreport"
|
|
)
|
|
|
|
func main() {
|
|
if err, _ := crashreport.CapturePanic(app.Run, nil); err != nil {
|
|
log.WithError(err.(error)).Error("panic in app.Run")
|
|
crashreport.Wait()
|
|
}
|
|
}
|