17 lines
221 B
Go
17 lines
221 B
Go
package opt
|
|
|
|
import "errors"
|
|
|
|
const (
|
|
DefaultMaxSize = 1024 * 1024 * 1024
|
|
ReferrersEnabled = true
|
|
|
|
BaseAddress = "repo.me"
|
|
RoleMustLess = true
|
|
)
|
|
|
|
var (
|
|
Debug = false
|
|
ErrNotFound = errors.New("not found")
|
|
)
|