Files
go-ha/internal/websocket/reader.go
Sam Lewis 2d77c4b657 schedule works! 🎉🔥
2022-10-15 22:22:59 -04:00

17 lines
203 B
Go

package websocket
import (
"context"
"nhooyr.io/websocket"
)
type BaseMessage struct {
MsgType string `json:"type"`
Other any
}
func ReadWebsocket(ws *websocket.Conn, ctx context.Context) {
}