| 7 | ) |
| 8 | |
| 9 | type Server struct { |
| 10 | Comment string |
| 11 | Listens []*ServerListen |
| 12 | Directives []IDirective |
| 13 | Line int |
| 14 | Cors bool |
| 15 | AllowMethods string |
| 16 | AllowHeaders string |
| 17 | AllowOrigins string |
| 18 | AllowCredentials bool |
| 19 | Preflight bool |
| 20 | } |
| 21 | |
| 22 | func (s *Server) GetCodeBlock() string { |
| 23 | return "" |
nothing calls this directly
no outgoing calls
no test coverage detected