mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-07 16:54:16 +01:00
13 lines
186 B
Go
13 lines
186 B
Go
//go:build ios || android
|
|
|
|
package networkmonitor
|
|
|
|
import "context"
|
|
|
|
func (nw *NetworkMonitor) Start(context.Context, func()) error {
|
|
return nil
|
|
}
|
|
|
|
func (nw *NetworkMonitor) Stop() {
|
|
}
|