Files
tether/reactivity/tracker.go
T
2026-02-26 12:38:01 -06:00

14 lines
201 B
Go

package reactivity
import "github.com/gorilla/websocket"
type Subscription struct {
ID string
Conn *websocket.Conn
}
type Channel struct {
ID string
Subscriptions []*Subscription
}