mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 18:29:53 +08:00
24 lines
396 B
Go
24 lines
396 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
|
|
}
|