mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 03:51:18 +08:00
16 lines
387 B
JavaScript
16 lines
387 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) {
|
|
return callback();
|
|
}
|
|
};
|