5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-12 23:19:29 +08:00
wails/v3/internal/assetserver/assetserver_dev.go
2023-11-27 20:38:42 +11:00

12 lines
138 B
Go

//go:build !production
package assetserver
import (
"os"
)
func GetDevServerURL() string {
return os.Getenv("WAILS_DEVSERVER_URL")
}