Files
wails/wailsruntimeassets/bridge/wailsbridge.prod.js
Lea Anthony 1d8e99d846 Move to mewn
2019-02-18 21:06:53 +11:00

18 lines
444 B
JavaScript

/*
Wails Bridge (c) 2019-present Lea Anthony
This prod version is to get around having to rewrite your code
for production. When doing a release build, this file will be used
instead of the full version.
*/
export default {
// The main function
// Passes the main Wails object to the callback if given.
Start: function(callback) {
if (callback) {
window.wails.events.on("wails:ready", callback);
}
}
};