summaryrefslogtreecommitdiffstats
path: root/routers/home.go
diff options
context:
space:
mode:
authorUnknown <joe2010xtmf@163.com>2014-02-12 12:49:46 -0500
committerUnknown <joe2010xtmf@163.com>2014-02-12 12:49:46 -0500
commit4836fea8767c38f175f59f8f66579e76fe6354f5 (patch)
treee50dd7b420e4d6ed0c109021bb76777ffe4daeb6 /routers/home.go
parent38422805dcb9d783eeb6c0706bbf2e116b656844 (diff)
downloadgitea-4836fea8767c38f175f59f8f66579e76fe6354f5.tar.gz
gitea-4836fea8767c38f175f59f8f66579e76fe6354f5.zip
Init commit
Diffstat (limited to 'routers/home.go')
-rw-r--r--routers/home.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/routers/home.go b/routers/home.go
new file mode 100644
index 0000000000..5bb12f6ddd
--- /dev/null
+++ b/routers/home.go
@@ -0,0 +1,9 @@
+// Copyright 2014 The Gogs Authors. All rights reserved.
+// Use of this source code is governed by a MIT-style
+// license that can be found in the LICENSE file.
+
+package routers
+
+func HomeGet() string {
+ return "Hello world!"
+}