mirror of
https://github.com/versia-pub/versia-go.git
synced 2025-12-06 06:28:18 +01:00
10 lines
142 B
Go
10 lines
142 B
Go
|
|
package user_handler
|
||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/gofiber/fiber/v2"
|
||
|
|
)
|
||
|
|
|
||
|
|
func (i *Handler) RobotsTXT(c *fiber.Ctx) error {
|
||
|
|
return c.SendString("")
|
||
|
|
}
|