(repository string)
| 72 | } |
| 73 | |
| 74 | func checkRepository(repository string) error { |
| 75 | return checkElement("repository", repository, repositoryChars, 2, 255) |
| 76 | } |
| 77 | |
| 78 | // NewRepository returns a new Repository representing the given name, according to the given strictness. |
| 79 | func NewRepository(name string, opts ...Option) (Repository, error) { |
no test coverage detected
searching dependent graphs…