feat: support mirrors
All checks were successful
Pre-commit / pre-commit (pull_request) Successful in 6m8s

This commit is contained in:
2025-06-19 18:56:24 +03:00
parent 25d001c1c9
commit 2bb5d42e6b
8 changed files with 750 additions and 191 deletions

View File

@@ -32,7 +32,8 @@ type Config struct {
// Repo represents a ALR repo within a configuration file
type Repo struct {
Name string `toml:"name"`
URL string `toml:"url"`
Ref string `toml:"ref"`
Name string `toml:"name"`
URL string `toml:"url"`
Ref string `toml:"ref"`
Mirrors []string `toml:"mirrors"`
}