func main()

in cmd/ar-token/main.go [37:47]


func main() {
	flag.Parse()
	ctx := context.Background()
	token, err := getToken(ctx)
	if err != nil {
		fmt.Fprintf(os.Stderr, "Failed to get token with error: %v\n", err)
		os.Exit(1)
	}

	fmt.Print(token)
}