rsb / cli-go

A library used to integrate cli interactions into your Go application

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CLI

A CLI library used to integrate command line interaction into your Go application. This is heavily influenced by cobra cli. In fact, I want to use as much from that project as I can, making changes to suite my specific development needs which I will highlight along the way.

Using cli is easy. First, use go get to install the latest version of the library.

go get -u github.com/rsb/cli-go@latest

Next, include Cobra in your application:

import "github.com/rsb/cli-go"

License

FuelCell is released under the MIT. See LICENSE

About

A library used to integrate cli interactions into your Go application

License:MIT License


Languages

Language:Go 100.0%