aboutsummaryrefslogtreecommitdiff
path: root/routes/outbox.go
blob: 8945bb11ad4769a2781c29e9e6145f3d3c548f3d (plain)
1
2
3
4
5
6
7
8
9
package routes

import "github.com/gofiber/fiber/v2"

func Outbox(c *fiber.Ctx) error {
	// STUB

	return c.SendString("main outbox")
}