mirror of
https://github.com/adnanh/webhook.git
synced 2025-10-04 21:51:02 +00:00
12 lines
302 B
Go
12 lines
302 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package pidfile
|
|
|
|
import "os"
|
|
|
|
// MkdirAll creates a directory named path along with any necessary parents,
|
|
// with permission specified by attribute perm for all dir created.
|
|
func MkdirAll(path string, perm os.FileMode) error {
|
|
return os.MkdirAll(path, perm)
|
|
}
|