mirror of
https://github.com/OpenListTeam/OpenList.git
synced 2025-11-25 03:15:19 +08:00
10 lines
171 B
Go
10 lines
171 B
Go
|
|
//go:build windows || plan9 || netbsd || aix || illumos || solaris || js
|
||
|
|
|
||
|
|
package local
|
||
|
|
|
||
|
|
import "os"
|
||
|
|
|
||
|
|
func copyNamedPipe(_ string, _, _ os.FileMode) error {
|
||
|
|
return nil
|
||
|
|
}
|