Files
pmg/pkg/common/utils/config.go
T

16 lines
229 B
Go
Raw Normal View History

2025-04-09 23:27:46 +05:30
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")
}