aboutsummaryrefslogtreecommitdiff
path: root/routes/follow.go
blob: 2578983006bd9ea80f306d05068fd732659b8700 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package routes

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

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

	return c.SendString("main following")
}

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

	return c.SendString("main followers")
}