mirror of
https://codeberg.org/video-prize-ranch/rimgo.git
synced 2025-06-28 07:58:23 +00:00
12 lines
192 B
Go
12 lines
192 B
Go
package utils
|
|
|
|
import "github.com/gofiber/fiber/v2"
|
|
|
|
func GetInstanceUrl(c *fiber.Ctx) string {
|
|
proto := "https://"
|
|
if !Config.Secure {
|
|
proto = "http://"
|
|
}
|
|
return proto + c.Hostname()
|
|
}
|