Rewrite imports to use forks files on gitlab not use githubs.

This commit is contained in:
James
2017-05-16 11:06:32 -07:00
parent 014858143b
commit e4bb04887e
76 changed files with 154 additions and 154 deletions

View File

@@ -14,14 +14,14 @@ import (
"github.com/Sirupsen/logrus"
"github.com/ccirello/supervisor"
"github.com/gin-gonic/gin"
"github.com/treeder/functions/api"
"github.com/treeder/functions/api/datastore"
"github.com/treeder/functions/api/models"
"github.com/treeder/functions/api/mqs"
"github.com/treeder/functions/api/runner"
"github.com/treeder/functions/api/runner/task"
"github.com/treeder/functions/api/server/internal/routecache"
"github.com/treeder/functions/api/runner/common"
"gitlab.oracledx.com/odx/functions/api"
"gitlab.oracledx.com/odx/functions/api/datastore"
"gitlab.oracledx.com/odx/functions/api/models"
"gitlab.oracledx.com/odx/functions/api/mqs"
"gitlab.oracledx.com/odx/functions/api/runner"
"gitlab.oracledx.com/odx/functions/api/runner/task"
"gitlab.oracledx.com/odx/functions/api/server/internal/routecache"
"gitlab.oracledx.com/odx/functions/api/runner/common"
"github.com/spf13/viper"
)