21 lines
324 B
Go
21 lines
324 B
Go
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
|
|
}
|