feat: implement core backend architecture and project management services for the History API
Build and Release / release (push) Successful in 1m33s

This commit is contained in:
2026-06-05 14:18:55 +07:00
parent 420a9ad43a
commit fdcd44cc00
70 changed files with 944 additions and 734 deletions
+3 -2
View File
@@ -63,8 +63,9 @@ func (ctrl *goongController) Proxy(c fiber.Ctx) error {
}
}
headers := make(map[string]string)
for k, v := range c.GetReqHeaders() {
reqHeaders := c.GetReqHeaders()
headers := make(map[string]string, len(reqHeaders))
for k, v := range reqHeaders {
if len(v) > 0 {
headers[k] = v[0]
}