mirror of
https://github.com/owncast/owncast.git
synced 2024-11-29 03:29:03 +03:00
8 lines
173 B
Go
8 lines
173 B
Go
package webhooks
|
|||
|
|||
import "github.com/owncast/owncast/models"
|
|||
|
|||
func SendStreamStatusEvent(eventType models.EventType) {
|
|||
SendEventToWebhooks(WebhookEvent{Type: eventType})
|
|||
}
|