Updates env var name.

This commit is contained in:
2025-10-12 00:41:23 +00:00
parent 973782baaa
commit 772e324d89
2 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ import (
// GetDaemonURL returns the daemon URL from environment or default
func GetDaemonURL() string {
// Check environment variable first
if url := os.Getenv("WILD_DAEMON_URL"); url != "" {
if url := os.Getenv("WILD_API_URI"); url != "" {
return url
}