14 lines
231 B
Go
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}
|
|
}
|