2026-03-11 22:06:44 +01:00
|
|
|
// Copyright (C) 2026 saces@c-base.org
|
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
2026-01-31 08:13:53 +01:00
|
|
|
//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)
|
|
|
|
|
}
|