e81ccc406b
Change all license headers to comply with REUSE specification. Fix #16132 Co-authored-by: flynnnnnnnnnn <flynnnnnnnnnn@github> Co-authored-by: John Olheiser <john.olheiser@gmail.com>
16 lines
320 B
Go
16 lines
320 B
Go
// Copyright 2022 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package oci
|
|
|
|
import (
|
|
"regexp"
|
|
)
|
|
|
|
var referencePattern = regexp.MustCompile(`\A[a-zA-Z0-9_][a-zA-Z0-9._-]{0,127}\z`)
|
|
|
|
type Reference string
|
|
|
|
func (r Reference) Validate() bool {
|
|
return referencePattern.MatchString(string(r))
|
|
}
|