File: example-cli.go

package info (click to toggle)
golang-github-urfave-cli-v2 2.25.7-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 7,188 kB
  • sloc: makefile: 41; sh: 28
file content (11 lines) | stat: -rw-r--r-- 156 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
// minimal example CLI used for binary size checking

package main

import (
	"github.com/urfave/cli/v2"
)

func main() {
	(&cli.App{}).Run([]string{""})
}