mirror of
https://github.com/certimate-go/certimate.git
synced 2026-09-22 05:04:19 +08:00
12 lines
154 B
Go
12 lines
154 B
Go
package core
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
)
|
|
|
|
var (
|
|
ErrNotImplemented = fmt.Errorf("not implemented function")
|
|
ErrUnsupported = errors.ErrUnsupported
|
|
)
|