Skip to content

dottics/cli

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GO CLI PACKAGE

by Dottics (PTY) LTD

CLI is a minimal Go package created as an open source project to make it easy to create basic CLI applications.

Getting Started

Add the package to your project:

go get github.com/dottics/cli

Now getting started with a blank project:

package main

import (
	"flag"
	"github.com/dottics/cli"
	"log"
	"os"
)

func main() {
	// instantiate the root level command, this can be named anything
	// as only sub commands require specific names.
	root := cli.NewCommand("main", flag.ExitOnError)
	// now we pass all the args when we run the command, note that the
	// first element is os.Args is the executable command.
	// A similar design is used for sub commands see below for more detail.
	err := root.Run(os.Args[1:])
	if err != nil {
		log.Fatalln(err)
	}
}

That is all that is required to get started. This implementation is obviously pretty useless since at this time it does nothing, but will not break.

Examples

go run main.go
# Output: 

and

# here the 'get' command does not exist
go run main.go get
# Output: "
# 
# ** WIP **
# 
# "

and

# here the '-help' command does not exist
go run main.go -help
# Output: flag provided but not defined: -username

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages