gorm/apaas/error.go
2025-05-28 14:28:49 +08:00

10 lines
147 B
Go

package apaas
import "fmt"
const MSG_PREFIX = "[apaas_engine]"
func GenError(msg string) error {
return fmt.Errorf("%s %s", MSG_PREFIX, msg)
}