({
data,
listen_host,
listen_port,
}: RawSpecParts)
| 13 | }; |
| 14 | |
| 15 | export const parseRaw = ({ |
| 16 | data, |
| 17 | listen_host, |
| 18 | listen_port, |
| 19 | }: RawSpecParts): WireguardState => ({ |
| 20 | ui_id: Math.random(), |
| 21 | active: true, |
| 22 | listen_host, |
| 23 | listen_port, |
| 24 | file_path: data, |
| 25 | }); |
no outgoing calls
no test coverage detected
searching dependent graphs…