Files
dolt/cmd/util/kingpin_command.go
Ben Kalman a67aa18847 Improve command line parsing of noms splore (#3627)
Make it use kingpin, and clean up tests.
2017-08-21 17:45:55 -07:00

11 lines
355 B
Go

// Copyright 2017 Attic Labs, Inc. All rights reserved.
// Licensed under the Apache License, version 2.0:
// http://www.apache.org/licenses/LICENSE-2.0
package util
import kingpin "gopkg.in/alecthomas/kingpin.v2"
type KingpinHandler func(input string) (exitCode int)
type KingpinCommand func(*kingpin.Application) (*kingpin.CmdClause, KingpinHandler)