repo-sync/config/info.go
James Coleman 5af1dd8928
Some checks failed
Go package / build (push) Has been cancelled
first commit
2026-07-28 19:22:20 -05:00

19 lines
569 B
Go

// Package config loads and validates the mirror server configuration,
// publishes it for reload-aware readers, configures logging, and carries
// the application identity and build identifiers.
package config
// Build identifiers populated at build time via -ldflags.
var (
Version = "dev"
Commit = ""
Date = ""
Mode = "dev"
)
// Application identifiers used by the CLI and the upstream user agent.
const (
Name = "repo-sync"
DisplayName = "Repository Sync"
Description = "Synchronize Linux package repositories into a local directory tree."
)