mirror of
https://github.com/1f349/orchid.git
synced 2025-02-05 14:06:40 +00:00
16 lines
279 B
Go
16 lines
279 B
Go
package utils
|
|
|
|
import "fmt"
|
|
|
|
func GetCertFileName(id int64) string {
|
|
return fmt.Sprintf("%d.cert.pem", id)
|
|
}
|
|
|
|
func GetOldCertFileName(id int64) string {
|
|
return fmt.Sprintf("%d-old.cert.pem", id)
|
|
}
|
|
|
|
func GetKeyFileName(id int64) string {
|
|
return fmt.Sprintf("%d.key.pem", id)
|
|
}
|