Files
scriptorium/internal/defaults/defaults.go

14 lines
314 B
Go

package defaults
import "time"
const (
HTTPAddrDefault = ":8080"
SchemaDirDefault = "."
HTTPMaxRequestBytesDefault = 16 * 1024 * 1024
HTTPMaxArtifactBytesDefault = 16 * 1024 * 1024
HTTPMaxResponseBytesDefault = 16 * 1024 * 1024
)
var HTTPReadHeaderTimeoutDefault = 10 * time.Second