mirror of
https://github.com/projectcapsule/capsule.git
synced 2026-08-25 16:07:24 +00:00
10 lines
168 B
Go
10 lines
168 B
Go
// Copyright 2020-2021 Clastix Labs
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package secret
|
|
|
|
const (
|
|
certSecretKey = "tls.crt"
|
|
privateKeySecretKey = "tls.key"
|
|
)
|