(ctx context.Context)
| 110 | } |
| 111 | |
| 112 | func WithContext(ctx context.Context) ServerOption { |
| 113 | return func(s *Server) { |
| 114 | s.Context = ctx |
| 115 | } |
| 116 | } |
| 117 | |
| 118 | func WithBytesPool(bytesPool statute.BytesPool) ServerOption { |
| 119 | return func(s *Server) { |
nothing calls this directly
no outgoing calls
no test coverage detected