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