package agent import "git.wntrmute.dev/mc/mcp/internal/naming" // ContainerNameFor is a convenience alias for naming.ContainerNameFor (the // canonical convention, shared with the monitor). func ContainerNameFor(service, component string) string { return naming.ContainerNameFor(service, component) } // SplitContainerName is a convenience alias for naming.SplitContainerName. func SplitContainerName(name string, knownServices map[string]bool) (service, component string) { return naming.SplitContainerName(name, knownServices) }