mirror of
https://github.com/dutchcoders/transfer.sh.git
synced 2024-11-23 12:40:19 +01:00
23 lines
443 B
Go
23 lines
443 B
Go
package ratelimit_test
|
|
|
|
import (
|
|
"net/http"
|
|
"time"
|
|
|
|
"github.com/VojtechVitek/ratelimit"
|
|
)
|
|
|
|
func ExampleThrottle() {
|
|
middleware := ratelimit.Throttle(1)
|
|
|
|
handler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
w.Write([]byte("working hard...\n\n"))
|
|
if f, ok := w.(http.Flusher); ok {
|
|
f.Flush()
|
|
}
|
|
time.Sleep(10 * time.Second)
|
|
w.Write([]byte("done"))
|
|
})
|
|
|
|
http.ListenAndServe(":3333", middleware(handler))
|
|
}
|