mirror of
https://github.com/nadoo/glider.git
synced 2026-07-17 17:30:11 +08:00
14 lines
230 B
Go
14 lines
230 B
Go
//go:build !linux
|
|
|
|
package netset
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
libnetset "github.com/nadoo/netset"
|
|
)
|
|
|
|
func newBackend() (backend, error) {
|
|
return nil, fmt.Errorf("netset manager is supported only on linux: %w", libnetset.ErrUnsupported)
|
|
}
|