repo-sync/config/info.go
James Coleman 7613ca209a
Some checks are pending
Go package / build (push) Waiting to run
first commit
2026-07-27 17:36:32 -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."
)