aboutsummaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
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
-}