// Package squid will render /etc/edgeguard/squid/squid.conf in // Phase 3. v1 ships a stub returning configgen.ErrNotImplemented so // the orchestrator can list it without crashing. package squid import ( "context" "git.netcell-it.de/projekte/edgeguard-native/internal/configgen" ) type Generator struct{} func New() *Generator { return &Generator{} } func (g *Generator) Name() string { return "squid" } func (g *Generator) Render(ctx context.Context) error { return configgen.ErrNotImplemented }