8 lines
133 B
Go
8 lines
133 B
Go
package routes
|
|
|
|
import "github.com/gofiber/fiber/v3"
|
|
|
|
func CreatePushSubscription(c fiber.Ctx) error {
|
|
return c.JSON(fiber.Map{})
|
|
}
|