mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-10-09 11:33:36 +00:00
12 lines
219 B
Go
12 lines
219 B
Go
package controllers
|
|
|
|
import (
|
|
"github.com/gofiber/fiber/v2"
|
|
"mizuserver/pkg/holder"
|
|
)
|
|
|
|
func GetCurrentResolvingInformation(c *fiber.Ctx) error {
|
|
return c.Status(fiber.StatusOK).JSON(holder.GetResolver().GetMap())
|
|
}
|
|
|