| // Copyright 2022 The Fuchsia Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| package main |
| |
| import ( |
| "log" |
| "os" |
| |
| "cloud.google.com/go/bigquery" |
| "github.com/maruel/subcommands" |
| "go.chromium.org/luci/auth" |
| "go.chromium.org/luci/auth/client/authcli" |
| "go.chromium.org/luci/common/api/gitiles" |
| "go.chromium.org/luci/hardcoded/chromeinfra" |
| ) |
| |
| func getApplication(defaultAuthOpts auth.Options) *subcommands.DefaultApplication { |
| defaultAuthOpts.Scopes = []string{ |
| auth.OAuthScopeEmail, |
| bigquery.Scope, |
| gitiles.OAuthScope, |
| } |
| return &subcommands.DefaultApplication{ |
| Name: "autogardener", |
| Title: "Tool for identifying culprit CLs that cause postsubmit breakages.", |
| Commands: []*subcommands.Command{ |
| cmdCulprit(defaultAuthOpts), |
| authcli.SubcommandInfo(defaultAuthOpts, "whoami", false), |
| authcli.SubcommandLogin(defaultAuthOpts, "login", false), |
| authcli.SubcommandLogout(defaultAuthOpts, "logout", false), |
| subcommands.CmdHelp, |
| }, |
| } |
| } |
| |
| func main() { |
| log.SetFlags(log.Lmicroseconds) |
| app := getApplication(chromeinfra.DefaultAuthOptions()) |
| os.Exit(subcommands.Run(app, nil)) |
| } |