11 lines
273 B
Go
11 lines
273 B
Go
// Copyright (C) 2026 saces@c-base.org
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
//go: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)
|
|
}
|