mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-09-28 22:08:34 +00:00
13 lines
224 B
Go
13 lines
224 B
Go
package controllers
|
|
|
|
import (
|
|
"github.com/gofiber/fiber/v2"
|
|
"github.com/up9inc/mizu/shared"
|
|
)
|
|
|
|
var TapStatus shared.TapStatus
|
|
|
|
func GetTappingStatus(c *fiber.Ctx) error {
|
|
return c.Status(fiber.StatusOK).JSON(TapStatus)
|
|
}
|