blob: 12e133d1e65d8e64572e5ec52f925efd30156ca1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
package routes
import "github.com/gofiber/fiber/v2"
func BoardBanMedia(c *fiber.Ctx) error {
return c.SendString("board ban media")
}
func BoardDelete(c *fiber.Ctx) error {
return c.SendString("board delete")
}
func BoardDeleteAttach(c *fiber.Ctx) error {
return c.SendString("board delete attach")
}
func BoardMarkSensitive(c *fiber.Ctx) error {
return c.SendString("board mark sensitive")
}
func BoardRemove(c *fiber.Ctx) error {
return c.SendString("board remove")
}
func BoardRemoveAttach(c *fiber.Ctx) error {
return c.SendString("board remove attach")
}
func BoardAddToIndex(c *fiber.Ctx) error {
return c.SendString("board add to index")
}
func BoardPopArchive(c *fiber.Ctx) error {
return c.SendString("board pop archive")
}
func BoardAutoSubscribe(c *fiber.Ctx) error {
return c.SendString("board auto subscribe")
}
func BoardBlacklist(c *fiber.Ctx) error {
return c.SendString("board blacklist")
}
func BoardReport(c *fiber.Ctx) error {
return c.SendString("board report")
}
|