2024-04-14 21:48:27 +08:00

13 lines
150 B
Go

package opt
import "errors"
const (
DefaultMaxSize = 32 * 1024 * 1024
ReferrersEnabled = true
)
var (
ErrNotFound = errors.New("not found")
)