mirror of
https://github.com/phishingclub/phishingclub.git
synced 2026-02-12 16:12:44 +00:00
12 lines
269 B
Go
12 lines
269 B
Go
package data
|
|
|
|
import "github.com/phishingclub/phishingclub/build"
|
|
|
|
// GetCrmURL returns the URL for the CRM system depending on the environment
|
|
func GetCrmURL() string {
|
|
if build.Flags.Production {
|
|
return "https://user.phishing.club"
|
|
}
|
|
return "https://crm:8009"
|
|
}
|