communicate/events/event_service.go
jackdaw a7a2d60954 .
2016-11-28 14:22:50 +09:00

14 lines
237 B
Go

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