13 lines
184 B
Go
13 lines
184 B
Go
package ws
|
|
|
|
import (
|
|
"github.com/go-chi/chi/v5"
|
|
// "github.com/gorilla/websocket"
|
|
)
|
|
|
|
type SessionManager struct {
|
|
}
|
|
|
|
func (s *SessionManager) InstallPrivateRoutes(r chi.Router) {
|
|
|
|
}
|