5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-10 00:12:32 +08:00
wails/v2/internal/runtime/js/runtime/main.js
2021-02-06 13:36:56 +11:00

32 lines
714 B
JavaScript

/*
_ __ _ __
| | / /___ _(_) /____
| | /| / / __ `/ / / ___/
| |/ |/ / /_/ / / (__ )
|__/|__/\__,_/_/_/____/
The lightweight framework for web-like apps
(c) Lea Anthony 2019-present
*/
/* jshint esversion: 6 */
const Log = require('./log');
const Browser = require('./browser');
const Dialog = require('./dialog');
const Events = require('./events');
const Init = require('./init');
const System = require('./system');
const Store = require('./store');
const Window = require('./window');
const Tray = require('./tray');
module.exports = {
Browser: Browser,
Dialog: Dialog,
Events: Events,
ready: Init.ready,
Log: Log,
System: System,
Store: Store,
Window: Window,
Tray: Tray,
};