mirror of
https://github.com/certimate-go/certimate.git
synced 2026-06-19 21:03:27 +08:00
12 lines
157 B
Go
12 lines
157 B
Go
package core
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
)
|
|
|
|
var (
|
|
ErrNotImplemented = fmt.Errorf("not implemented function")
|
|
ErrUnsupported = errors.ErrUnsupported
|
|
)
|