Implement present box

Signed-off-by: Sean Du <do4suki@gmail.com>
This commit is contained in:
2026-06-05 06:53:48 +08:00
parent a7ec1f1b7b
commit c4f1686abb
16 changed files with 227 additions and 2 deletions
+22
View File
@@ -0,0 +1,22 @@
package reward
import (
rewardapischema "honoka-chan/internal/schema/api/reward"
"time"
)
func rewardList() (res any, err error) {
res = rewardapischema.ListResp{
Result: rewardapischema.ListData{
ItemCount: 0,
Limit: 20,
Order: 0,
Items: []any{},
},
Status: 200,
CommandNum: false,
TimeStamp: time.Now().Unix(),
}
return res, err
}