All checks were successful
Create and publish a Docker image 🚀 / build-and-push-image (push) Successful in 1m19s
9 lines
113 B
Go
9 lines
113 B
Go
package models
|
|
|
|
import "github.com/gorilla/websocket"
|
|
|
|
type Client struct {
|
|
ID uint32
|
|
Conn *websocket.Conn
|
|
}
|