(network: DockerNetwork)
| 1 | import type { DockerNetwork } from "../types"; |
| 2 | |
| 3 | export const Network = (network: DockerNetwork) => { |
| 4 | return { |
| 5 | ...network, |
| 6 | }; |
| 7 | }; |
| 8 | |
| 9 | export type Network = ReturnType<typeof Network>; |
| 10 |
nothing calls this directly
no outgoing calls
no test coverage detected