diff options
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!" +} |