package config // Config holds the application-level configuration for a single execution run. type Config struct { // Profile is the name of the WireGuard profile to use. Profile string // DNSServer is an optional override for the DNS server. DNSServer string // Command is the actual command and arguments to be executed within the namespace. Command []string }