mirror of
https://github.com/certimate-go/certimate.git
synced 2026-06-22 21:05:48 +08:00
11 lines
153 B
Go
11 lines
153 B
Go
package certmgr
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
ErrNotImplemented = errors.New("not implemented function")
|
|
ErrUnsupported = errors.ErrUnsupported
|
|
)
|