package id import ( "fmt" "net/netip" "github.com/netbirdio/netbird/client/firewall/manager" ) type RuleID string func (r RuleID) GetRuleID() string { return string(r) } func GenerateRouteRuleKey( sources []netip.Prefix, destination netip.Prefix, proto manager.Protocol, sPort *manager.Port, dPort *manager.Port, action manager.Action, ) RuleID { return RuleID(fmt.Sprintf("%s-%s-%s-%s-%s-%d", sources, destination, proto, sPort, dPort, action)) }