Files
chat/internal/server/http.go

10 lines
143 B
Go

package server
import "time"
const (
httpReadTimeout = 10 * time.Second
httpWriteTimeout = 10 * time.Second
maxHeaderBytes = 1 << 20
)