(logger statute.Logger)
| 86 | } |
| 87 | |
| 88 | func WithLogger(logger statute.Logger) ServerOption { |
| 89 | return func(s *Server) { |
| 90 | s.Logger = logger |
| 91 | } |
| 92 | } |
| 93 | |
| 94 | func WithBind(bindAddress string) ServerOption { |
| 95 | return func(s *Server) { |
nothing calls this directly
no outgoing calls
no test coverage detected