You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

23 lines
326 B

package prize
import (
"MangheGo/internal/model/entity"
"MangheGo/internal/service"
"context"
)
type (
sPrize struct{}
)
func init() {
service.RegisterPrize(New())
}
func New() service.IPrize {
return &sPrize{}
}
func (s *sPrize) GetPrizeList(ctx context.Context) (prizeList []*entity.Prize, err error) {
return
}