summaryrefslogtreecommitdiff
path: root/template_windows.go
blob: 040cbd2696b34b0680dd6b885557ae8f1fa63af5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//go:build windows
// +build windows

package gomplate

import (
	"os"

	"golang.org/x/sys/windows"
)

func isDirError(name string) *os.PathError {
	return &os.PathError{
		Op:   "open",
		Path: name,
		Err:  windows.ERROR_INVALID_HANDLE,
	}
}