This commit is contained in:
aynakeya
2023-09-01 18:51:31 -07:00
commit caec88b461
15 changed files with 1069 additions and 0 deletions

10
error.go Normal file
View File

@@ -0,0 +1,10 @@
package miaosic
import "errors"
var ErrNotImplemented = errors.New("not implemented")
var (
ErrorExternalApi = errors.New("external api error")
ErrorNoSuchProvider = errors.New("not such provider")
)