blob: d94187e3f143f2bdc319abf44faf41a4ea3d30f8 [file] [log] [blame]
// Copyright The Monogon Project Authors.
// SPDX-License-Identifier: Apache-2.0
package main
import (
"context"
"fmt"
"source.monogon.dev/osbase/bringup"
)
func main() {
bringup.Runnable(func(ctx context.Context) error {
return fmt.Errorf("this is an error")
}).Run()
}