summaryrefslogtreecommitdiffstats
path: root/jobs
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2017-09-06 23:05:10 -0700
committerChristopher Speller <crspeller@gmail.com>2017-09-06 23:11:59 -0700
commit29fca51821981079175adf336d303a474f5ef310 (patch)
treea8866cb74ab28afa2c5c4af412454d58e250eb45 /jobs
parentd8bd57901e33a7057e26e782e295099ffcc0da89 (diff)
downloadchat-29fca51821981079175adf336d303a474f5ef310.tar.gz
chat-29fca51821981079175adf336d303a474f5ef310.tar.bz2
chat-29fca51821981079175adf336d303a474f5ef310.zip
Renaming repo
Diffstat (limited to 'jobs')
-rw-r--r--jobs/jobs.go2
-rw-r--r--jobs/jobs_watcher.go2
-rw-r--r--jobs/schedulers.go6
-rw-r--r--jobs/server.go6
-rw-r--r--jobs/testworker.go2
-rw-r--r--jobs/workers.go6
6 files changed, 12 insertions, 12 deletions
diff --git a/jobs/jobs.go b/jobs/jobs.go
index f61b35158..6e1230291 100644
--- a/jobs/jobs.go
+++ b/jobs/jobs.go
@@ -10,7 +10,7 @@ import (
"net/http"
l4g "github.com/alecthomas/log4go"
- "github.com/mattermost/platform/model"
+ "github.com/mattermost/mattermost-server/model"
)
const (
diff --git a/jobs/jobs_watcher.go b/jobs/jobs_watcher.go
index 83d4249eb..8355fc11d 100644
--- a/jobs/jobs_watcher.go
+++ b/jobs/jobs_watcher.go
@@ -8,7 +8,7 @@ import (
"time"
l4g "github.com/alecthomas/log4go"
- "github.com/mattermost/platform/model"
+ "github.com/mattermost/mattermost-server/model"
)
const (
diff --git a/jobs/schedulers.go b/jobs/schedulers.go
index 2f4e18001..ca4831241 100644
--- a/jobs/schedulers.go
+++ b/jobs/schedulers.go
@@ -7,10 +7,10 @@ import (
"sync"
l4g "github.com/alecthomas/log4go"
- ejobs "github.com/mattermost/platform/einterfaces/jobs"
+ ejobs "github.com/mattermost/mattermost-server/einterfaces/jobs"
- "github.com/mattermost/platform/model"
- "github.com/mattermost/platform/utils"
+ "github.com/mattermost/mattermost-server/model"
+ "github.com/mattermost/mattermost-server/utils"
)
type Schedulers struct {
diff --git a/jobs/server.go b/jobs/server.go
index 58412a40e..6c857e7dc 100644
--- a/jobs/server.go
+++ b/jobs/server.go
@@ -5,9 +5,9 @@ package jobs
import (
l4g "github.com/alecthomas/log4go"
- "github.com/mattermost/platform/model"
- "github.com/mattermost/platform/store"
- "github.com/mattermost/platform/utils"
+ "github.com/mattermost/mattermost-server/model"
+ "github.com/mattermost/mattermost-server/store"
+ "github.com/mattermost/mattermost-server/utils"
)
type JobServer struct {
diff --git a/jobs/testworker.go b/jobs/testworker.go
index 385a2073b..29608e909 100644
--- a/jobs/testworker.go
+++ b/jobs/testworker.go
@@ -8,7 +8,7 @@ import (
"time"
l4g "github.com/alecthomas/log4go"
- "github.com/mattermost/platform/model"
+ "github.com/mattermost/mattermost-server/model"
)
type TestWorker struct {
diff --git a/jobs/workers.go b/jobs/workers.go
index fe38641e7..ebbc91a51 100644
--- a/jobs/workers.go
+++ b/jobs/workers.go
@@ -7,9 +7,9 @@ import (
"sync"
l4g "github.com/alecthomas/log4go"
- ejobs "github.com/mattermost/platform/einterfaces/jobs"
- "github.com/mattermost/platform/model"
- "github.com/mattermost/platform/utils"
+ ejobs "github.com/mattermost/mattermost-server/einterfaces/jobs"
+ "github.com/mattermost/mattermost-server/model"
+ "github.com/mattermost/mattermost-server/utils"
)
type Workers struct {