Server handles creating Sockets from http connections
| 7 | |
| 8 | // Server handles creating Sockets from http connections |
| 9 | type Server struct { |
| 10 | mu sync.RWMutex |
| 11 | *namespace |
| 12 | subspaces map[string]*namespace |
| 13 | } |
| 14 | |
| 15 | // Of creates a new Namespace with "name", or returns the existing Namespace |
| 16 | // with name "name" |
nothing calls this directly
no outgoing calls
no test coverage detected