File: main.go

package info (click to toggle)
golang-github-alexflint-go-arg 1.3.0%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 220 kB
  • sloc: sh: 21; makefile: 4
file content (11 lines) | stat: -rw-r--r-- 141 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
package main

import "github.com/alexflint/go-arg"

func main() {
	var args struct {
		Test string
	}
	arg.MustParse(&args)
	_ = args.Test
}