Install & Compatibility
Where this runs
No compatibility data collected yet for this library.
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
cli
✓ github.com/go-clix/cli
Create a simple CLI app
package main
import (
"fmt"
"github.com/go-clix/cli"
)
func main() {
app := cli.NewApp()
app.Name = "example"
app.Action = func(c *cli.Context) error {
fmt.Println("Hello, world!")
return nil
}
app.Run()
}
Debug
Known issues
No known issues recorded.
Upgrade
Version history
0.2.0latest on pkg.go.dev
Audit
Dependencies
No dependency data recorded yet.