feat: consolidate provider plugin and chart

This commit is contained in:
2026-07-12 14:42:22 +03:30
parent 4996a511eb
commit 077c472b9d
48 changed files with 1870 additions and 854 deletions
+17
View File
@@ -0,0 +1,17 @@
package api
type HTTPError struct {
StatusCode int
Message string
}
func (e *HTTPError) Error() string {
if e == nil {
return ""
}
return e.Message
}
func NewHTTPError(status int, message string) error {
return &HTTPError{StatusCode: status, Message: message}
}