summaryrefslogtreecommitdiff
path: root/lib/StarGit.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/StarGit.pm')
-rw-r--r--lib/StarGit.pm10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/StarGit.pm b/lib/StarGit.pm
new file mode 100644
index 0000000..161e4a7
--- /dev/null
+++ b/lib/StarGit.pm
@@ -0,0 +1,10 @@
+package StarGit;
+use Dancer ':syntax';
+
+our $VERSION = '0.1';
+
+get '/' => sub {
+ template 'index';
+};
+
+true;