blob: 15b2686beaa30b21fc88dc0f32f9c4e835f3ceef (
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(ctx *fiber.Ctx) error {
return ctx.SendString("board ban media")
}
func BoardDelete(ctx *fiber.Ctx) error {
return ctx.SendString("board delete")
}
func BoardDeleteAttach(ctx *fiber.Ctx) error {
return ctx.SendString("board delete attach")
}
func BoardMarkSensitive(ctx *fiber.Ctx) error {
return ctx.SendString("board mark sensitive")
}
func BoardRemove(ctx *fiber.Ctx) error {
return ctx.SendString("board remove")
}
func BoardRemoveAttach(ctx *fiber.Ctx) error {
return ctx.SendString("board remove attach")
}
func BoardAddToIndex(ctx *fiber.Ctx) error {
return ctx.SendString("board add to index")
}
func BoardPopArchive(ctx *fiber.Ctx) error {
return ctx.SendString("board pop archive")
}
func BoardAutoSubscribe(ctx *fiber.Ctx) error {
return ctx.SendString("board auto subscribe")
}
func BoardBlacklist(ctx *fiber.Ctx) error {
return ctx.SendString("board blacklist")
}
func BoardReport(ctx *fiber.Ctx) error {
return ctx.SendString("board report")
}
|