10 lines
143 B
Go
10 lines
143 B
Go
package server
|
|
|
|
import "time"
|
|
|
|
const (
|
|
httpReadTimeout = 10 * time.Second
|
|
httpWriteTimeout = 10 * time.Second
|
|
maxHeaderBytes = 1 << 20
|
|
)
|