From 4738e1076c56b9654ab7d60b1bba9c9f9882737e Mon Sep 17 00:00:00 2001 From: Fernandez Ludovic Date: Fri, 6 Nov 2020 02:23:25 +0100 Subject: [PATCH] review. --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 72e00bb3..ce7d5a69 100644 --- a/README.md +++ b/README.md @@ -3,14 +3,14 @@ Oxy [![Build Status](https://travis-ci.org/vulcand/oxy.svg?branch=master)](https Oxy is a Go library with HTTP handlers that enhance HTTP standard library: -* [Buffer](https://pkg.go.dev/github.com/vulcand/oxy/buffer?tab=doc) retries and buffers requests and responses -* [Stream](https://pkg.go.dev/github.com/vulcand/oxy/stream?tab=doc) passes-through requests, supports chunked encoding with configurable flush interval -* [Forward](https://pkg.go.dev/github.com/vulcand/oxy/forward?tab=doc) forwards requests to remote location and rewrites headers -* [Roundrobin](https://pkg.go.dev/github.com/vulcand/oxy/roundrobin?tab=doc) is a round-robin load balancer -* [Circuit Breaker](https://pkg.go.dev/github.com/vulcand/oxy/cbreaker?tab=doc) Hystrix-style circuit breaker -* [Connlimit](https://pkg.go.dev/github.com/vulcand/oxy/connlimit?tab=doc) Simultaneous connections limiter -* [Ratelimit](https://pkg.go.dev/github.com/vulcand/oxy/ratelimit?tab=doc) Rate limiter (based on tokenbucket algo) -* [Trace](https://pkg.go.dev/github.com/vulcand/oxy/trace?tab=doc) Structured request and response logger +* [Buffer](https://pkg.go.dev/github.com/vulcand/oxy/buffer) retries and buffers requests and responses +* [Stream](https://pkg.go.dev/github.com/vulcand/oxy/stream) passes-through requests, supports chunked encoding with configurable flush interval +* [Forward](https://pkg.go.dev/github.com/vulcand/oxy/forward) forwards requests to remote location and rewrites headers +* [Roundrobin](https://pkg.go.dev/github.com/vulcand/oxy/roundrobin) is a round-robin load balancer +* [Circuit Breaker](https://pkg.go.dev/github.com/vulcand/oxy/cbreaker) Hystrix-style circuit breaker +* [Connlimit](https://pkg.go.dev/github.com/vulcand/oxy/connlimit) Simultaneous connections limiter +* [Ratelimit](https://pkg.go.dev/github.com/vulcand/oxy/ratelimit) Rate limiter (based on tokenbucket algo) +* [Trace](https://pkg.go.dev/github.com/vulcand/oxy/trace) Structured request and response logger It is designed to be fully compatible with http standard library, easy to customize and reuse.