summaryrefslogtreecommitdiff
path: root/core/main.vala
diff options
context:
space:
mode:
authorChristian Dywan <christian@twotoasts.de>2018-07-09 14:31:56 +0200
committerChristian Dywan <christian@twotoasts.de>2018-07-09 14:31:56 +0200
commit961f439fccbd02aebeaa69ee9f052ab695971a61 (patch)
treec7a529b13a45ad147acf14a959ca97bfa3565ac4 /core/main.vala
parentb8958a437d4bfd81d30f1d78c8cf7973f8b1e569 (diff)
downloadmidori-git-961f439fccbd02aebeaa69ee9f052ab695971a61.tar.gz
Rewrite browser core completely in Vala
Diffstat (limited to 'core/main.vala')
-rw-r--r--core/main.vala15
1 files changed, 15 insertions, 0 deletions
diff --git a/core/main.vala b/core/main.vala
new file mode 100644
index 00000000..ee89e3e7
--- /dev/null
+++ b/core/main.vala
@@ -0,0 +1,15 @@
+/*
+ Copyright (C) 2018 Christian Dywan <christian@twotoats.de>
+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Lesser General Public
+ License as published by the Free Software Foundation; either
+ version 2.1 of the License, or (at your option) any later version.
+
+ See the file COPYING for the full license text.
+*/
+
+static int main (string[] args) {
+ var app = new Midori.App ();
+ return app.run (args);
+}