package fiber import "github.com/gofiber/fiber/v2" func Exec(fn func()) { if !fiber.IsChild() { fn() } }