36 lines
713 B
Go
36 lines
713 B
Go
package personalnotice
|
|
|
|
import (
|
|
"honoka-chan/internal/middleware"
|
|
"honoka-chan/internal/router"
|
|
"honoka-chan/internal/schema/personalnotice"
|
|
"honoka-chan/internal/session"
|
|
"time"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func get(ctx *gin.Context) {
|
|
ss := session.Get(ctx)
|
|
defer ss.Finalize()
|
|
|
|
noticeResp := personalnotice.GetResp{
|
|
ResponseData: personalnotice.GetData{
|
|
HasNotice: false,
|
|
NoticeID: 0,
|
|
Type: 0,
|
|
Title: "",
|
|
Contents: "",
|
|
ServerTimestamp: time.Now().Unix(),
|
|
},
|
|
ReleaseInfo: []any{},
|
|
StatusCode: 200,
|
|
}
|
|
|
|
ss.Respond(noticeResp)
|
|
}
|
|
|
|
func init() {
|
|
router.AddHandler("main.php", "POST", "/personalnotice/get", middleware.Common, get)
|
|
}
|