**Describe the bug** I created a goroutine which would panic after 10 seconds after request came, and then it would panic. **To Reproduce** Sample Handler code ``` func HelloHandler(c *gofr.Context) (any, error) { go func() { time.Sleep(10 * time.Second) panic("i panicked after 10 seconds") }() name := c.Param("name") if name == "" { c.Log("Name came empty") name = "World" } return fmt.Sprintf("Hello %s!", name), nil } ``` **Expected behavior** App should not crash **Screenshots** <img width="1533" height="977" alt="Image" src="https://github.com/user-attachments/assets/868e896a-6423-4fe2-8bf8-0658f0e14819" />