mirror of
https://github.com/turbot/steampipe.git
synced 2025-12-19 18:12:43 -05:00
11 lines
214 B
Go
11 lines
214 B
Go
package constants
|
|
|
|
// constants for ssl key and certificate
|
|
const (
|
|
ServerCertKey = "server.key"
|
|
RootCertKey = "root.key"
|
|
ServerCert = "server.crt"
|
|
RootCert = "root.crt"
|
|
SslConfDir = "/etc/ssl"
|
|
)
|