mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 19:01:02 +08:00
24 lines
395 B
Go
24 lines
395 B
Go
//go:build production
|
|
|
|
package runtime
|
|
|
|
var RuntimeAssetsBundle = &RuntimeAssets{
|
|
runtimeDesktopJS: DesktopRuntime,
|
|
}
|
|
|
|
type RuntimeAssets struct {
|
|
runtimeDesktopJS []byte
|
|
}
|
|
|
|
func (r *RuntimeAssets) DesktopIPC() []byte {
|
|
return []byte("")
|
|
}
|
|
|
|
func (r *RuntimeAssets) WebsocketIPC() []byte {
|
|
return []byte("")
|
|
}
|
|
|
|
func (r *RuntimeAssets) RuntimeDesktopJS() []byte {
|
|
return r.runtimeDesktopJS
|
|
}
|