WIP debug docker container

This commit is contained in:
Gianni Carafa
2023-11-01 20:57:16 +01:00
parent 4a0a8d4869
commit 076d11be8e
8 changed files with 227 additions and 10 deletions

View File

@@ -1,12 +1,15 @@
package handlers
import (
"fmt"
"io/ioutil"
"log"
"net/http"
"time"
"github.com/gofiber/fiber/v2"
"github.com/gojek/heimdall/v7/httpclient"
"github.com/imroc/req/v3"
)
func Debug(c *fiber.Ctx) error {
@@ -36,3 +39,14 @@ func Debug(c *fiber.Ctx) error {
*/
return c.SendString(string(body))
}
func Debug2(c *fiber.Ctx) error {
client := req.C() // Use C() to create a client.
resp, err := client.R(). // Use R() to create a request.
Get("https://httpbin.org/uuid")
if err != nil {
log.Fatal(err)
}
fmt.Println(resp)
return c.SendString(resp.String())
}