mirror of
https://github.com/safedep/pmg.git
synced 2026-08-03 07:24:09 +02:00
16 lines
229 B
Go
16 lines
229 B
Go
package utils
|
|
|
|
import "os"
|
|
|
|
func ApiKey() string {
|
|
return os.Getenv("SAFEDEP_API_KEY")
|
|
}
|
|
|
|
func TenantDomain() string {
|
|
return os.Getenv("SAFEDEP_TENANT_ID")
|
|
}
|
|
|
|
func NpmAuthToken() string {
|
|
return os.Getenv("NPM_AUTH_TOKEN")
|
|
}
|