updated module to spdfg. Refactored imports

This commit is contained in:
Pradyumna Kaushik 2019-10-30 17:05:10 -04:00
parent 32738f3afc
commit 80c9d5b29c
49 changed files with 112 additions and 112 deletions

View file

@ -1,4 +1,4 @@
// Copyright (C) 2018 spdf
// Copyright (C) 2018 spdfg
//
// This file is part of Elektron.
//
@ -16,7 +16,7 @@
// along with Elektron. If not, see <http://www.gnu.org/licenses/>.
//
package main // import github.com/spdf/elektron
package main // import github.com/spdfg/elektron
import (
"flag"
@ -30,11 +30,11 @@ import (
"github.com/golang/protobuf/proto"
mesos "github.com/mesos/mesos-go/api/v0/mesosproto"
sched "github.com/mesos/mesos-go/api/v0/scheduler"
"github.com/spdf/elektron/def"
elekLogDef "github.com/spdf/elektron/logging/def"
"github.com/spdf/elektron/pcp"
"github.com/spdf/elektron/powerCap"
"github.com/spdf/elektron/schedulers"
"github.com/spdfg/elektron/def"
elekLogDef "github.com/spdfg/elektron/logging/def"
"github.com/spdfg/elektron/pcp"
"github.com/spdfg/elektron/powerCap"
"github.com/spdfg/elektron/schedulers"
)
var master = flag.String("master", "", "Location of leading Mesos master -- <mesos-master>:<port>")