├── .gitignore ├── CONTRIBUTION.md ├── LICENSE.txt ├── README.md ├── case.go ├── go.mod ├── go.sum ├── kad.go ├── key.go ├── polygon.go └── test ├── kad_test.go ├── key_test.go └── output ├── stab_alps_size_switch.svg ├── stab_cherry_size_switch.svg ├── switch_types_switch.svg ├── usage_with_go_bottom.svg ├── usage_with_go_closed.svg ├── usage_with_go_open.svg ├── usage_with_go_switch.svg ├── usage_with_go_top.svg ├── usage_with_json_bottom.svg ├── usage_with_json_closed.svg ├── usage_with_json_open.svg ├── usage_with_json_switch.svg └── usage_with_json_top.svg /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | usage -------------------------------------------------------------------------------- /CONTRIBUTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swill/kad/HEAD/CONTRIBUTION.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swill/kad/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swill/kad/HEAD/README.md -------------------------------------------------------------------------------- /case.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swill/kad/HEAD/case.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swill/kad/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swill/kad/HEAD/go.sum -------------------------------------------------------------------------------- /kad.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swill/kad/HEAD/kad.go -------------------------------------------------------------------------------- /key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swill/kad/HEAD/key.go -------------------------------------------------------------------------------- /polygon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swill/kad/HEAD/polygon.go -------------------------------------------------------------------------------- /test/kad_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swill/kad/HEAD/test/kad_test.go -------------------------------------------------------------------------------- /test/key_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swill/kad/HEAD/test/key_test.go -------------------------------------------------------------------------------- /test/output/stab_alps_size_switch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swill/kad/HEAD/test/output/stab_alps_size_switch.svg -------------------------------------------------------------------------------- /test/output/stab_cherry_size_switch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swill/kad/HEAD/test/output/stab_cherry_size_switch.svg -------------------------------------------------------------------------------- /test/output/switch_types_switch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swill/kad/HEAD/test/output/switch_types_switch.svg -------------------------------------------------------------------------------- /test/output/usage_with_go_bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swill/kad/HEAD/test/output/usage_with_go_bottom.svg -------------------------------------------------------------------------------- /test/output/usage_with_go_closed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swill/kad/HEAD/test/output/usage_with_go_closed.svg -------------------------------------------------------------------------------- /test/output/usage_with_go_open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swill/kad/HEAD/test/output/usage_with_go_open.svg -------------------------------------------------------------------------------- /test/output/usage_with_go_switch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swill/kad/HEAD/test/output/usage_with_go_switch.svg -------------------------------------------------------------------------------- /test/output/usage_with_go_top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swill/kad/HEAD/test/output/usage_with_go_top.svg -------------------------------------------------------------------------------- /test/output/usage_with_json_bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swill/kad/HEAD/test/output/usage_with_json_bottom.svg -------------------------------------------------------------------------------- /test/output/usage_with_json_closed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swill/kad/HEAD/test/output/usage_with_json_closed.svg -------------------------------------------------------------------------------- /test/output/usage_with_json_open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swill/kad/HEAD/test/output/usage_with_json_open.svg -------------------------------------------------------------------------------- /test/output/usage_with_json_switch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swill/kad/HEAD/test/output/usage_with_json_switch.svg -------------------------------------------------------------------------------- /test/output/usage_with_json_top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swill/kad/HEAD/test/output/usage_with_json_top.svg --------------------------------------------------------------------------------