├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── Makefile ├── README.md ├── VERSION ├── _config.yml ├── c ├── README.md ├── example_usage │ └── karn.c └── main.go ├── cmd └── generate │ └── main.go ├── docs ├── CONTRIBUTING.md ├── cli-usage.md ├── dependencies.md └── quickstart.md ├── go.mod ├── go.sum ├── karn.jpg ├── karnlogo.png ├── karnlogo.xcf ├── pkg └── entitlements │ ├── apply.go │ ├── create_oci_profile.go │ ├── entitlements.go │ ├── log.go │ └── verify.go ├── test-programs ├── chown.go └── testfile.txt └── vendor ├── github.com ├── inconshreveable │ └── mousetrap │ │ ├── LICENSE │ │ ├── README.md │ │ ├── trap_others.go │ │ ├── trap_windows.go │ │ └── trap_windows_1.4.go ├── opencontainers │ └── runtime-spec │ │ ├── LICENSE │ │ └── specs-go │ │ ├── config.go │ │ ├── state.go │ │ └── version.go ├── pkg │ └── errors │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── errors.go │ │ └── stack.go ├── seccomp │ └── libseccomp-golang │ │ ├── .gitignore │ │ ├── CHANGELOG │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README │ │ ├── SUBMITTING_PATCHES │ │ ├── seccomp.go │ │ └── seccomp_internal.go └── spf13 │ ├── cobra │ ├── .gitignore │ ├── .mailmap │ ├── .travis.yml │ ├── LICENSE.txt │ ├── README.md │ ├── args.go │ ├── bash_completions.go │ ├── bash_completions.md │ ├── cobra.go │ ├── command.go │ ├── command_notwin.go │ ├── command_win.go │ ├── go.mod │ ├── go.sum │ ├── powershell_completions.go │ ├── powershell_completions.md │ ├── shell_completions.go │ ├── zsh_completions.go │ └── zsh_completions.md │ └── pflag │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── bool.go │ ├── bool_slice.go │ ├── bytes.go │ ├── count.go │ ├── duration.go │ ├── duration_slice.go │ ├── flag.go │ ├── float32.go │ ├── float64.go │ ├── golangflag.go │ ├── int.go │ ├── int16.go │ ├── int32.go │ ├── int64.go │ ├── int8.go │ ├── int_slice.go │ ├── ip.go │ ├── ip_slice.go │ ├── ipmask.go │ ├── ipnet.go │ ├── string.go │ ├── string_array.go │ ├── string_slice.go │ ├── string_to_int.go │ ├── string_to_string.go │ ├── uint.go │ ├── uint16.go │ ├── uint32.go │ ├── uint64.go │ ├── uint8.go │ └── uint_slice.go └── modules.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 2.0.0 2 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/_config.yml -------------------------------------------------------------------------------- /c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/c/README.md -------------------------------------------------------------------------------- /c/example_usage/karn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/c/example_usage/karn.c -------------------------------------------------------------------------------- /c/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/c/main.go -------------------------------------------------------------------------------- /cmd/generate/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/cmd/generate/main.go -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/cli-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/docs/cli-usage.md -------------------------------------------------------------------------------- /docs/dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/docs/dependencies.md -------------------------------------------------------------------------------- /docs/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/docs/quickstart.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/go.sum -------------------------------------------------------------------------------- /karn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/karn.jpg -------------------------------------------------------------------------------- /karnlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/karnlogo.png -------------------------------------------------------------------------------- /karnlogo.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/karnlogo.xcf -------------------------------------------------------------------------------- /pkg/entitlements/apply.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/pkg/entitlements/apply.go -------------------------------------------------------------------------------- /pkg/entitlements/create_oci_profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/pkg/entitlements/create_oci_profile.go -------------------------------------------------------------------------------- /pkg/entitlements/entitlements.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/pkg/entitlements/entitlements.go -------------------------------------------------------------------------------- /pkg/entitlements/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/pkg/entitlements/log.go -------------------------------------------------------------------------------- /pkg/entitlements/verify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/pkg/entitlements/verify.go -------------------------------------------------------------------------------- /test-programs/chown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/test-programs/chown.go -------------------------------------------------------------------------------- /test-programs/testfile.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /vendor/github.com/inconshreveable/mousetrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/inconshreveable/mousetrap/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/inconshreveable/mousetrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/inconshreveable/mousetrap/README.md -------------------------------------------------------------------------------- /vendor/github.com/inconshreveable/mousetrap/trap_others.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/inconshreveable/mousetrap/trap_others.go -------------------------------------------------------------------------------- /vendor/github.com/inconshreveable/mousetrap/trap_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/inconshreveable/mousetrap/trap_windows.go -------------------------------------------------------------------------------- /vendor/github.com/inconshreveable/mousetrap/trap_windows_1.4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/inconshreveable/mousetrap/trap_windows_1.4.go -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runtime-spec/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/opencontainers/runtime-spec/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runtime-spec/specs-go/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/opencontainers/runtime-spec/specs-go/config.go -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runtime-spec/specs-go/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/opencontainers/runtime-spec/specs-go/state.go -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runtime-spec/specs-go/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/opencontainers/runtime-spec/specs-go/version.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/pkg/errors/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/pkg/errors/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/pkg/errors/README.md -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/pkg/errors/appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/pkg/errors/errors.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/pkg/errors/stack.go -------------------------------------------------------------------------------- /vendor/github.com/seccomp/libseccomp-golang/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.swp 3 | *.orig 4 | tags 5 | -------------------------------------------------------------------------------- /vendor/github.com/seccomp/libseccomp-golang/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/seccomp/libseccomp-golang/CHANGELOG -------------------------------------------------------------------------------- /vendor/github.com/seccomp/libseccomp-golang/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/seccomp/libseccomp-golang/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/seccomp/libseccomp-golang/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/seccomp/libseccomp-golang/Makefile -------------------------------------------------------------------------------- /vendor/github.com/seccomp/libseccomp-golang/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/seccomp/libseccomp-golang/README -------------------------------------------------------------------------------- /vendor/github.com/seccomp/libseccomp-golang/SUBMITTING_PATCHES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/seccomp/libseccomp-golang/SUBMITTING_PATCHES -------------------------------------------------------------------------------- /vendor/github.com/seccomp/libseccomp-golang/seccomp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/seccomp/libseccomp-golang/seccomp.go -------------------------------------------------------------------------------- /vendor/github.com/seccomp/libseccomp-golang/seccomp_internal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/seccomp/libseccomp-golang/seccomp_internal.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/cobra/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/cobra/.mailmap -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/cobra/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/cobra/LICENSE.txt -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/cobra/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/cobra/args.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/bash_completions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/cobra/bash_completions.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/bash_completions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/cobra/bash_completions.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/cobra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/cobra/cobra.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/cobra/command.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/command_notwin.go: -------------------------------------------------------------------------------- 1 | // +build !windows 2 | 3 | package cobra 4 | 5 | var preExecHookFn func(*Command) 6 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/command_win.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/cobra/command_win.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/cobra/go.mod -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/cobra/go.sum -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/powershell_completions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/cobra/powershell_completions.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/powershell_completions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/cobra/powershell_completions.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/shell_completions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/cobra/shell_completions.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/zsh_completions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/cobra/zsh_completions.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/zsh_completions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/cobra/zsh_completions.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/pflag/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/pflag/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/pflag/bool_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/pflag/bytes.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/pflag/count.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/pflag/duration.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/duration_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/pflag/duration_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/pflag/float32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/pflag/float64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/golangflag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/pflag/golangflag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/pflag/int16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/pflag/int32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/pflag/int64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/pflag/int_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/pflag/ip_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipmask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/pflag/ipmask.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/pflag/ipnet.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/pflag/string.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/pflag/string_array.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/pflag/string_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string_to_int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/pflag/string_to_int.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string_to_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/pflag/string_to_string.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/pflag/uint16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/pflag/uint32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/pflag/uint64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/pflag/uint8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/github.com/spf13/pflag/uint_slice.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantseltzer/karn/HEAD/vendor/modules.txt --------------------------------------------------------------------------------