/gpump/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/gpump/trunk
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/gjs

imports.searchPath.unshift('.');
const Application = imports.app;

function main (argv) {
  var app = new Application.Application ()
  return app.run(argv);
}

main (ARGV);