12345678910111213141516171819 |
- package service
- import (
- "github.com/gorilla/websocket"
- "time"
- )
- type Session struct {
- Conn *websocket.Conn
- Time time.Time
- }
- func NewSession(conn *websocket.Conn) *Session {
- s := &Session{
- Conn: conn,
- Time: time.Now(),
- }
- return s
- }
|