mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-04 07:43:11 +08:00
17 lines
209 B
Go
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 ""
|
|
}
|