This commit is contained in:
crusader 2018-04-04 22:36:19 +09:00
parent aaed2f9fe3
commit 1ca5974e12
2 changed files with 0 additions and 3 deletions

View File

@ -17,8 +17,6 @@ type ConnectionHandler interface {
} }
type ConnectionHandlers struct { type ConnectionHandlers struct {
ConnectionHandler
// The maximum number of concurrent connections the server may serve. // The maximum number of concurrent connections the server may serve.
// //
// DefaultConcurrency is used if not set. // DefaultConcurrency is used if not set.

View File

@ -16,7 +16,6 @@ type ServerHandler interface {
} }
type ServerHandlers struct { type ServerHandlers struct {
ServerHandler
ConnectionHandlers ConnectionHandlers
ReadWriteHandlers ReadWriteHandlers