File: main.js

package info (click to toggle)
modemmanager 1.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 17,768 kB
  • ctags: 20,138
  • sloc: ansic: 131,722; sh: 12,062; xml: 1,707; makefile: 1,689; python: 69
file content (11 lines) | stat: -rw-r--r-- 208 bytes parent folder | download | duplicates (8)
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();
}