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