mirror of
https://github.com/langgenius/dify.git
synced 2026-09-01 21:55:46 +08:00
8 lines
123 B
Go
8 lines
123 B
Go
//go:build unix
|
|
|
|
package snapshot
|
|
|
|
import "syscall"
|
|
|
|
func mkfifo(path string) error { return syscall.Mkfifo(path, 0o644) }
|