Compare commits

..

No commits in common. "main" and "v0.12.15" have entirely different histories.

View File

@ -17,7 +17,6 @@ type Server interface {
GinHandlerFunc(auth func(c *gin.Context) (string, error)) gin.HandlerFunc
Push(user any, name, msg string) bool
Broadcast(name, msg string)
ClientCount() int32
}
type clientChan struct {
@ -158,7 +157,3 @@ func (stream *event) Broadcast(name, msg string) {
return true
})
}
func (stream *event) ClientCount() int32 {
return stream.Count.Load()
}