blob: beb66764f3a43f80534c6a8652cc7cdc332178f1 [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 (
"fmt"
"os"
"go.chromium.org/chromiumos/test/publish/cmd/cpcon-publish/cli"
)
func main() {
opt, err := cli.ParseInputs()
if err != nil {
fmt.Printf("unable to parse inputs: %s", err)
os.Exit(2)
}
opt.Run()
}