Files
honoka-chan/internal/handler/api/unit/supporterall.go
T
YumeMichi c77241a883 Overhaul [1/n]
Signed-off-by: Sean Du <do4suki@gmail.com>
2026-01-29 02:42:28 +08:00

20 lines
345 B
Go

package unit
import (
"honoka-chan/internal/schema/api/unit"
"time"
)
func unitSupporterAll() (res any, err error) {
res = unit.SupporterAllResp{
Result: unit.SupporterAllData{
UnitSupportList: []unit.SupporterList{},
}, // 练习道具
Status: 200,
CommandNum: false,
TimeStamp: time.Now().Unix(),
}
return res, err
}