mirror of
https://github.com/fleetdm/fleet
synced 2026-05-22 16:39:01 +00:00
15 lines
270 B
Go
15 lines
270 B
Go
|
|
//go:build windows
|
||
|
|
// +build windows
|
||
|
|
|
||
|
|
package secure
|
||
|
|
|
||
|
|
import "os"
|
||
|
|
|
||
|
|
func MkdirAll(path string, perm os.FileMode) error {
|
||
|
|
return os.MkdirAll(path, perm)
|
||
|
|
}
|
||
|
|
|
||
|
|
func OpenFile(name string, flag int, perm os.FileMode) (*os.File, error) {
|
||
|
|
return os.OpenFile(name, flag, perm)
|
||
|
|
}
|