Files

11 lines
306 B
Go
Raw Permalink Normal View History

2025-03-10 15:56:12 +03:00
package config
2025-02-26 17:07:42 +01:00
import (
2025-02-26 17:51:06 +01:00
"github.com/netbirdio/netbird/management/server/types"
2025-08-12 21:50:08 +03:00
"github.com/netbirdio/netbird/shared/management/proto"
2025-02-26 17:07:42 +01:00
)
2025-08-12 21:50:08 +03:00
func ExtendNetBirdConfig(peerID string, peerGroups []string, config *proto.NetbirdConfig, extraSettings *types.ExtraSettings) *proto.NetbirdConfig {
2025-03-27 22:43:45 +01:00
return config
2025-02-26 17:07:42 +01:00
}