11 lines
207 B
Go
11 lines
207 B
Go
package types
|
|
|
|
import "fmt"
|
|
|
|
var (
|
|
ContextNotExistError = fmt.Errorf("context not exist")
|
|
|
|
WrongFormatError = fmt.Errorf("wrong format")
|
|
HTTPRequestFailedError = fmt.Errorf("http request failed")
|
|
)
|