mirror of
https://github.com/netbirdio/netbird.git
synced 2026-09-15 19:29:08 +02:00
9 lines
202 B
Go
9 lines
202 B
Go
//go:build !darwin && !windows
|
|
|
|
package certproof
|
|
|
|
// DefaultStore is the PEM directory named by NB_CERT_STORE_DIR, or /etc/netbird/certs.
|
|
func DefaultStore() Store {
|
|
return NewFileStore(StoreDir())
|
|
}
|