mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-10 22:19:46 +08:00
18 lines
267 B
Go
18 lines
267 B
Go
//go:build production
|
|
|
|
package assetserver
|
|
|
|
import "net/http"
|
|
|
|
func defaultIndexHTML() []byte {
|
|
return []byte{}
|
|
}
|
|
|
|
func (a *AssetServer) setupHandler() (http.Handler, error) {
|
|
return NewDefaultAssetHandler(a.options)
|
|
}
|
|
|
|
func GetDevServerURL() string {
|
|
return ""
|
|
}
|