├── .gitignore ├── LICENSE ├── README.md ├── _examples ├── README │ ├── test.gif │ └── test.go ├── all-in-one │ └── main.go ├── custom-handler │ └── main.go ├── decode │ └── main.go ├── groups │ └── main.go ├── hello-world │ └── main.go ├── middleware │ └── logging-recovery │ │ └── logging_recovery.go ├── native │ └── main.go └── websockets │ └── main.go ├── context.go ├── context_16.go ├── context_16_test.go ├── context_17.go ├── context_17_test.go ├── context_test.go ├── doc.go ├── group.go ├── group_test.go ├── lars.go ├── lars_test.go ├── logo.png ├── middleware ├── gzip.go └── gzip_test.go ├── node.go ├── node_test.go ├── response.go ├── response_test.go ├── util.go └── util_test.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/lars/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/lars/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/lars/HEAD/README.md -------------------------------------------------------------------------------- /_examples/README/test.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/lars/HEAD/_examples/README/test.gif -------------------------------------------------------------------------------- /_examples/README/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/lars/HEAD/_examples/README/test.go -------------------------------------------------------------------------------- /_examples/all-in-one/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/lars/HEAD/_examples/all-in-one/main.go -------------------------------------------------------------------------------- /_examples/custom-handler/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/lars/HEAD/_examples/custom-handler/main.go -------------------------------------------------------------------------------- /_examples/decode/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/lars/HEAD/_examples/decode/main.go -------------------------------------------------------------------------------- /_examples/groups/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/lars/HEAD/_examples/groups/main.go -------------------------------------------------------------------------------- /_examples/hello-world/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/lars/HEAD/_examples/hello-world/main.go -------------------------------------------------------------------------------- /_examples/middleware/logging-recovery/logging_recovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/lars/HEAD/_examples/middleware/logging-recovery/logging_recovery.go -------------------------------------------------------------------------------- /_examples/native/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/lars/HEAD/_examples/native/main.go -------------------------------------------------------------------------------- /_examples/websockets/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/lars/HEAD/_examples/websockets/main.go -------------------------------------------------------------------------------- /context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/lars/HEAD/context.go -------------------------------------------------------------------------------- /context_16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/lars/HEAD/context_16.go -------------------------------------------------------------------------------- /context_16_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/lars/HEAD/context_16_test.go -------------------------------------------------------------------------------- /context_17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/lars/HEAD/context_17.go -------------------------------------------------------------------------------- /context_17_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/lars/HEAD/context_17_test.go -------------------------------------------------------------------------------- /context_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/lars/HEAD/context_test.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/lars/HEAD/doc.go -------------------------------------------------------------------------------- /group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/lars/HEAD/group.go -------------------------------------------------------------------------------- /group_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/lars/HEAD/group_test.go -------------------------------------------------------------------------------- /lars.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/lars/HEAD/lars.go -------------------------------------------------------------------------------- /lars_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/lars/HEAD/lars_test.go -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/lars/HEAD/logo.png -------------------------------------------------------------------------------- /middleware/gzip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/lars/HEAD/middleware/gzip.go -------------------------------------------------------------------------------- /middleware/gzip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/lars/HEAD/middleware/gzip_test.go -------------------------------------------------------------------------------- /node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/lars/HEAD/node.go -------------------------------------------------------------------------------- /node_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/lars/HEAD/node_test.go -------------------------------------------------------------------------------- /response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/lars/HEAD/response.go -------------------------------------------------------------------------------- /response_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/lars/HEAD/response_test.go -------------------------------------------------------------------------------- /util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/lars/HEAD/util.go -------------------------------------------------------------------------------- /util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/lars/HEAD/util_test.go --------------------------------------------------------------------------------