| 17 | } |
| 18 | |
| 19 | type FramedServer struct { |
| 20 | ctx context.Context |
| 21 | handlersMu sync.RWMutex |
| 22 | handlers map[string]map[string]handler |
| 23 | } |
| 24 | |
| 25 | func NewFramedServer(ctx context.Context) *FramedServer { |
| 26 | return &FramedServer{ |
nothing calls this directly
no outgoing calls
no test coverage detected