pkg-proxy/internal/config/ecosystem.go

12 lines
315 B
Go
Raw Permalink Normal View History

2026-04-19 07:27:30 -04:00
package config
import (
"github.com/git-pkgs/proxy/internal/config/cargo"
"github.com/git-pkgs/proxy/internal/config/debian"
)
// Ecosystem configuration (routes and upstreams)
type EcosystemConfig struct {
Cargo cargo.Config `json:"cargo" yaml:"cargo"`
Debian debian.Config `json:"debian" yaml:"debian"`
}