This repository has been archived on 2023-08-08. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
jichan.org-go/httputils/event.go

12 lines
213 B
Go

package httputils
import "fmt"
type SseEvent struct {
EventName string
Data string
}
func (event SseEvent) Encode() string {
return fmt.Sprintf("event: %s\ndata: %s\n\n", event.EventName, event.Data)
}