pygomx/libmxclient/determinant/mxpassfile/readpassfile.go

10 lines
209 B
Go
Raw Permalink Normal View History

2026-01-31 08:13:53 +01:00
//go:build windows
// +build windows
package mxpassfile
// ReadPassfile reads the file at path and parses it into a Passfile.
func ReadPassfile(path string) (*Passfile, error) {
return readPassfile(path)
}