18 lines
289 B
Go
18 lines
289 B
Go
package service_event
|
|
|
|
import "nixcn-cms/service/shared"
|
|
|
|
type EventJoinData struct {
|
|
}
|
|
|
|
type EventJoinPayload struct {
|
|
}
|
|
|
|
type EventJoinResult struct {
|
|
Common shared.CommonResult
|
|
}
|
|
|
|
func (self *EventServiceImpl) JoinEvent(payload *EventJoinPayload) (result *EventJoinResult) {
|
|
return
|
|
}
|