mirror of
https://codeberg.org/Codeberg/pages-server.git
synced 2025-04-29 17:43:34 +02:00
13 lines
242 B
Go
13 lines
242 B
Go
package gitea
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var ErrorNotFound = errors.New("not found")
|
|
|
|
const (
|
|
branchTimestampCacheKeyPrefix = "branchTime"
|
|
defaultBranchCacheKeyPrefix = "defaultBranch"
|
|
giteaObjectTypeHeader = "X-Gitea-Object-Type"
|
|
)
|