5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-04 07:43:11 +08:00
wails/v3/internal/assetserver/build_production.go
2024-12-15 08:32:43 +11:00

17 lines
209 B
Go

//go:build production
package assetserver
import (
"io/fs"
"net/http"
)
func NewAssetFileServer(vfs fs.FS) http.Handler {
return newAssetFileServerFS(vfs)
}
func GetDevServerURL() string {
return ""
}