summaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
authorUnknwon <joe2010xtmf@163.com>2014-07-26 03:02:46 -0400
committerUnknwon <joe2010xtmf@163.com>2014-07-26 03:02:46 -0400
commit545d320648a5ce93e394a3cbc1317f73553b0d75 (patch)
treec352fab49c91d0531a3700465582e91f022cd170 /modules
parent5c4bc3c848fb4bd46ad5ceeacd82cdfa8f2b5635 (diff)
downloadgitea-545d320648a5ce93e394a3cbc1317f73553b0d75.tar.gz
gitea-545d320648a5ce93e394a3cbc1317f73553b0d75.zip
Docs fix
Diffstat (limited to 'modules')
-rw-r--r--modules/ssh/ssh.go2
-rw-r--r--modules/workers/worker.go10
2 files changed, 1 insertions, 11 deletions
diff --git a/modules/ssh/ssh.go b/modules/ssh/ssh.go
index 78ad678dc5..814a3dd1f4 100644
--- a/modules/ssh/ssh.go
+++ b/modules/ssh/ssh.go
@@ -17,7 +17,7 @@ import (
"github.com/Unknwon/com"
- "github.com/gogits/gogs-ng/modules/log"
+ "github.com/gogits/gogs/modules/log"
)
func handleServerConn(keyId string, chans <-chan ssh.NewChannel) {
diff --git a/modules/workers/worker.go b/modules/workers/worker.go
deleted file mode 100644
index 97535b2b4d..0000000000
--- a/modules/workers/worker.go
+++ /dev/null
@@ -1,10 +0,0 @@
-// 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 workers
-
-// Work represents a background work interface of any kind.
-type Work interface {
- Do() error
-}