communicate/events/event_service.go
jackdaw c9ecfcc2c1 .
2016-11-28 14:32:04 +09:00

14 lines
231 B
Go

package events
type ServiceEndEvent struct {
ServiceName string
}
func (i ServiceEndEvent) GetUrl() string {
return SERVICE_END
}
func NewServiceEndEvent(s string) *ServiceEndEvent {
return &ServiceEndEvent{ServiceName: s}
}