aboutsummaryrefslogtreecommitdiff
path: root/examples/modem-watcher-javascript/main.js
blob: a4c355495afd9385e5f671c612deb23c0271ebaf (plain)
1
2
3
4
5
6
7
8
9
10
11
const Mainloop = imports.mainloop;
const GLib     = imports.gi.GLib;

const modemWatcher = imports.modemWatcher;

function start() {
    let watcher = new modemWatcher.ModemWatcher();

    Mainloop.run();
}