blob: 1a5e15428856692d2e2f327763f41dffb91f6169 [file] [log] [blame]
// Copyright 2015 The Vanadium 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 "go.fuchsia.dev/jiri/cmdline"
// cmdFlat represents the flat command.
var cmdFlat = &cmdline.Command{
Runner: cmdline.RunnerFunc(runFlat),
Name: "flat",
Short: "Short description of command flat",
Long: "Long description of command flat.",
ArgsName: "[args]",
ArgsLong: "[args] are ignored",
}
func runFlat(env *cmdline.Env, _ []string) error {
return nil
}
func main() {
cmdline.Main(cmdFlat)
}