blob: a38621157b791d654bd6ea2e905fa0372f6301eb [file] [log] [blame]
// Copyright 2020 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
import (
"os"
"tnull/cmd"
"github.com/maruel/subcommands"
)
func main() {
application := &subcommands.DefaultApplication{
Name: "tnull",
Title: "A minimal Remote Test Driver for testing API and faking out aspects of the RTD for meta-testing purposes.",
Commands: []*subcommands.Command{
subcommands.CmdHelp,
cmd.RunSteps(),
cmd.GenerateFullRequest(),
},
}
os.Exit(subcommands.Run(application, nil))
}