diff options
author | Unknown <joe2010xtmf@163.com> | 2014-02-12 12:49:46 -0500 |
---|---|---|
committer | Unknown <joe2010xtmf@163.com> | 2014-02-12 12:49:46 -0500 |
commit | 4836fea8767c38f175f59f8f66579e76fe6354f5 (patch) | |
tree | e50dd7b420e4d6ed0c109021bb76777ffe4daeb6 /routers/home.go | |
parent | 38422805dcb9d783eeb6c0706bbf2e116b656844 (diff) | |
download | gitea-4836fea8767c38f175f59f8f66579e76fe6354f5.tar.gz gitea-4836fea8767c38f175f59f8f66579e76fe6354f5.zip |
Init commit
Diffstat (limited to 'routers/home.go')
-rw-r--r-- | routers/home.go | 9 |
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!" +} |