@@ -0,0 +1,20 @@
|
||||
package notice
|
||||
|
||||
import (
|
||||
"honoka-chan/internal/schema/api/notice"
|
||||
"time"
|
||||
)
|
||||
|
||||
func noticeMarquee() (res any, err error) {
|
||||
res = notice.MarqueeResp{
|
||||
Result: notice.MarqueeData{
|
||||
ItemCount: 0,
|
||||
MarqueeList: []any{},
|
||||
},
|
||||
Status: 200,
|
||||
CommandNum: false,
|
||||
TimeStamp: time.Now().Unix(),
|
||||
}
|
||||
|
||||
return res, err
|
||||
}
|
||||
Reference in New Issue
Block a user