mirror of
https://github.com/netbirdio/netbird.git
synced 2025-08-09 15:25:20 +02:00
[management] Add MySQL Support (#3108)
* Add mysql store support * Add support to disable activity events recording
This commit is contained in:
@ -14,3 +14,8 @@ func Difference(a, b []string) []string {
|
||||
}
|
||||
return diff
|
||||
}
|
||||
|
||||
// ToPtr returns a pointer to the given value.
|
||||
func ToPtr[T any](value T) *T {
|
||||
return &value
|
||||
}
|
||||
|
Reference in New Issue
Block a user