blob: b2c6443d21ea9ef67e998a6e8e1b2fc7a5df4a13 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package certs
import (
"a.yandex-team.ru/library/go/core/resource"
)
func InternalCAs() []byte {
return resource.Get("/certifi/internal.pem")
}
func CommonCAs() []byte {
return resource.Get("/certifi/common.pem")
}
|