initial commit

This commit is contained in:
2026-02-26 12:38:01 -06:00
commit bdad774b16
5 changed files with 50 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
package reactivity
import "github.com/gorilla/websocket"
type Subscription struct {
ID string
Conn *websocket.Conn
}
type Channel struct {
ID string
Subscriptions []*Subscription
}