17 lines
234 B
Go
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)
|
|
}
|