| 3 | import { join } from 'node:path'; |
| 4 | |
| 5 | interface SSLPaths { |
| 6 | sslDir: string; |
| 7 | serverKey: string; |
| 8 | serverCert: string; |
| 9 | serverCsr: string; |
| 10 | caKey: string; |
| 11 | caCert: string; |
| 12 | } |
| 13 | |
| 14 | const SSL_PATHS: SSLPaths = { |
| 15 | sslDir: join(process.cwd(), 'ssl'), |
nothing calls this directly
no outgoing calls
no test coverage detected