mirror of
https://github.com/turbot/steampipe.git
synced 2026-05-20 12:01:41 -04:00
10 lines
178 B
Go
10 lines
178 B
Go
package constants
|
|
|
|
// constants for ssl key and certificate
|
|
const (
|
|
ServerKey = "server.key"
|
|
ServerCert = "server.crt"
|
|
RootCert = "root.crt"
|
|
SslConfDir = "/etc/ssl"
|
|
)
|