schedule works! 🎉🔥

This commit is contained in:
Sam Lewis
2022-10-15 22:22:59 -04:00
parent e476a06aca
commit 2d77c4b657
8 changed files with 186 additions and 41 deletions

View File

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