mirror of
https://github.com/certimate-go/certimate.git
synced 2026-06-30 21:05:12 +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
|
|
)
|