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.
 
 
 
 

32 lines
720 B

// ================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// You can delete these comments if you wish manually maintain this interface file.
// ================================================================================
package service
import (
"MangheGo/internal/model/entity"
"context"
)
type (
IPrize interface {
GetPrizeList(ctx context.Context) (prizeList []*entity.Prize, err error)
}
)
var (
localPrize IPrize
)
func Prize() IPrize {
if localPrize == nil {
panic("implement not found for interface IPrize, forgot register?")
}
return localPrize
}
func RegisterPrize(i IPrize) {
localPrize = i
}