Files
gluetun/internal/openvpn/parse/errors.go
Quentin McGaw (desktop) 65ace12def Maint: internal/openvpn/parse package
- Parse PEM key data for Cyberghost and VPNUnlimited
- Add more unit tests
2021-09-08 16:40:19 +00:00

8 lines
95 B
Go

package parse
import "errors"
var (
ErrExtractPEM = errors.New("cannot extract PEM data")
)