ConfigST struct
| 20 | |
| 21 | //ConfigST struct |
| 22 | type ConfigST struct { |
| 23 | mutex sync.RWMutex |
| 24 | Server ServerST `json:"server"` |
| 25 | Streams map[string]StreamST `json:"streams"` |
| 26 | LastError error |
| 27 | } |
| 28 | |
| 29 | //ServerST struct |
| 30 | type ServerST struct { |
nothing calls this directly
no outgoing calls
no test coverage detected