fix: tests

This commit is contained in:
Lakhan Samani
2022-02-28 07:55:01 +05:30
parent b68d9ce661
commit df1c56bb1c
69 changed files with 284 additions and 236 deletions

View File

@@ -1,7 +1,6 @@
package utils
import (
"log"
"net/url"
"strings"
@@ -15,7 +14,6 @@ func GetHost(c *gin.Context) string {
scheme = "http"
}
host := c.Request.Host
log.Println("=> host:", scheme+"://"+host)
return scheme + "://" + host
}