Files
phishingclub/backend/data/urls.go
2025-08-21 16:14:09 +02:00

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"
}