Files
cunicu/pkg/wg/cleanup_others.go
Steffen Vogel dad8d5996b update Go module path
Signed-off-by: Steffen Vogel <post@steffenvogel.de>
2022-09-08 17:42:12 +02:00

12 lines
147 B
Go

//go:build !unix
package wg
import (
"github.com/stv0g/cunicu/pkg/errors"
)
func CleanupUserSockets() error {
return errors.ErrNotSupported
}