feat: mem, local uploader
This commit is contained in:
12
internal/opt/var.go
Normal file
12
internal/opt/var.go
Normal file
@ -0,0 +1,12 @@
|
||||
package opt
|
||||
|
||||
import "errors"
|
||||
|
||||
const (
|
||||
DefaultMaxSize = 32 * 1024 * 1024
|
||||
ReferrersEnabled = true
|
||||
)
|
||||
|
||||
var (
|
||||
ErrNotFound = errors.New("not found")
|
||||
)
|
Reference in New Issue
Block a user