Files
honoka-chan/internal/handler/api/challenge/info.go
T
2026-07-11 16:18:17 +08:00

18 lines
323 B
Go

package challenge
import (
challengeapischema "honoka-chan/internal/schema/api/challenge"
"net/http"
"time"
)
func challengeInfo() (res any, err error) {
res = challengeapischema.InfoResp{
Result: []any{},
Status: http.StatusOK,
CommandNum: false,
TimeStamp: time.Now().Unix(),
}
return res, err
}