pygomx/libmxclient/determinant/mxpassfile/readpassfile.go
2026-01-31 15:02:30 +01:00

9 lines
209 B
Go

//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)
}