({
data,
listen_host,
listen_port,
}: RawSpecParts)
| 16 | }; |
| 17 | |
| 18 | export const parseRaw = ({ |
| 19 | data, |
| 20 | listen_host, |
| 21 | listen_port, |
| 22 | }: RawSpecParts): UpstreamState => { |
| 23 | return { |
| 24 | ui_id: Math.random(), |
| 25 | active: true, |
| 26 | destination: data || "", |
| 27 | listen_host, |
| 28 | listen_port, |
| 29 | }; |
| 30 | }; |
no outgoing calls
no test coverage detected
searching dependent graphs…