mirror of
https://github.com/foomo/sesamy-go.git
synced 2025-10-16 12:35:43 +00:00
13 lines
341 B
Go
13 lines
341 B
Go
package event
|
|
|
|
import (
|
|
"github.com/foomo/sesamy-go"
|
|
"github.com/foomo/sesamy-go/event/params"
|
|
)
|
|
|
|
type SpendVirtualCurrency sesamy.Event[params.SpendVirtualCurrency]
|
|
|
|
func NewSpendVirtualCurrency(p params.SpendVirtualCurrency) SpendVirtualCurrency {
|
|
return SpendVirtualCurrency(sesamy.NewEvent(sesamy.EventNameSpendVirtualCurrency, p))
|
|
}
|