mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-12 06:59:30 +08:00
12 lines
138 B
Go
12 lines
138 B
Go
//go:build !production
|
|
|
|
package assetserver
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
func GetDevServerURL() string {
|
|
return os.Getenv("WAILS_DEVSERVER_URL")
|
|
}
|