blob: 4411fac19cb374f7ec378857ab2481d5e2f92756 [file] [log] [blame]
// Copyright 2021 The Chromium OS 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 implements the cros-provision used to setup CrOS devices.
package main
import (
"fmt"
"os"
)
func main() {
fmt.Printf("Not implemented yet :)")
os.Exit(2)
}