mirror of
https://github.com/wailsapp/wails.git
synced 2026-03-14 14:45:49 +01:00
Add System calls to runtime
This commit is contained in:
parent
10d68b2676
commit
aabcef2958
2 changed files with 6 additions and 3 deletions
|
|
@ -12,7 +12,7 @@ import * as Log from './log';
|
|||
import * as Browser from './browser';
|
||||
import * as Window from './window';
|
||||
import { On, OnMultiple, Emit, Notify, Heartbeat, Acknowledge } from './events';
|
||||
import { Callback } from './calls';
|
||||
import { Callback, SystemCall } from './calls';
|
||||
import { AddScript, InjectCSS } from './utils';
|
||||
import { AddIPCListener } from 'ipc';
|
||||
import * as Platform from 'platform';
|
||||
|
|
@ -40,7 +40,8 @@ export function Init() {
|
|||
AddScript,
|
||||
InjectCSS,
|
||||
Init,
|
||||
AddIPCListener
|
||||
AddIPCListener,
|
||||
SystemCall,
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -13,10 +13,12 @@ const Log = require('./log');
|
|||
const Browser = require('./browser');
|
||||
const Events = require('./events');
|
||||
const Init = require('./init');
|
||||
const System = require('./system');
|
||||
|
||||
module.exports = {
|
||||
Log: Log,
|
||||
Browser: Browser,
|
||||
Events: Events,
|
||||
Init: Init
|
||||
Init: Init,
|
||||
System: System,
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue