pages-server/server/gitea/client.go
2022-07-27 15:39:46 +02:00

12 lines
187 B
Go

package gitea
import (
"errors"
)
var ErrorNotFound = errors.New("not found")
const (
branchTimestampCacheKeyPrefix = "branchTime"
defaultBranchCacheKeyPrefix = "defaultBranch"
)