mirror of
https://codeberg.org/cunicu/cunicu.git
synced 2025-10-28 02:42:10 +08:00
12 lines
147 B
Go
12 lines
147 B
Go
//go:build !unix
|
|
|
|
package wg
|
|
|
|
import (
|
|
"github.com/stv0g/cunicu/pkg/errors"
|
|
)
|
|
|
|
func CleanupUserSockets() error {
|
|
return errors.ErrNotSupported
|
|
}
|