10 lines
209 B
Go
10 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)
|
||
|
|
}
|