Files
honoka-chan/internal/handler/ghome/misc/report.go
T
YumeMichi c77241a883 Overhaul [1/n]
Signed-off-by: Sean Du <do4suki@gmail.com>
2026-01-29 02:42:28 +08:00

17 lines
234 B
Go

package misc
import (
"honoka-chan/internal/router"
"net/http"
"github.com/gin-gonic/gin"
)
func report(ctx *gin.Context) {
ctx.Status(http.StatusOK)
}
func init() {
router.AddHandler("/", "POST", "/report/ge/app", report)
}