// Public Domain (-) 2010-present, The Peerbase Authors. // See the Peerbase UNLICENSE file for details. // Package optparse provides support for handling command line arguments. package optparse // App represents a command line application. type App struct { ParseHelp bool ParseVersion bool Usage string Version string opts []*option } // Parse foo func (a *App) Parse(args []string) { return }