5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-02 19:01:02 +08:00
wails/v3/internal/runtime/assets.go
Lea Anthony 0e8144e52f
Tidy up
2023-01-30 19:52:53 +11:00

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
}