Files
backend/types/errors.go
2025-12-07 11:27:54 +08:00

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")
)