blob: 878252e26d60f388d2692c6ec6e13246a6eb7ea0 [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/provision/v2/cros-provision/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()
}