14 lines
184 B
Go
14 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) {
|
||
|
|
||
|
}
|