blob: 09a69584640c0534c6b64cf76a8ac03d9470d331 [file] [log] [blame]
// Copyright 2022 The ChromiumOS Authors.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package main
import (
"go.chromium.org/chromiumos/test/publish/cmd/gcs-publish/cli"
"fmt"
"os"
)
func main() {
opt, err := cli.ParseInputs()
if err != nil {
fmt.Printf("unable to parse inputs: %s", err)
os.Exit(2)
}
opt.Run()
}