refact imports to github.xxx. update go.mod + go.sum
This commit is contained in:
parent
28d10d9d39
commit
0f36d30d46
23 changed files with 102 additions and 105 deletions
12
scheduler.go
12
scheduler.go
|
@ -16,7 +16,7 @@
|
|||
// along with Elektron. If not, see <http://www.gnu.org/licenses/>.
|
||||
//
|
||||
|
||||
package main // import gitlab.com/spdf/elektron
|
||||
package main // import github.com/spdf/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"
|
||||
"gitlab.com/spdf/elektron/def"
|
||||
elekLogDef "gitlab.com/spdf/elektron/logging/def"
|
||||
"gitlab.com/spdf/elektron/pcp"
|
||||
"gitlab.com/spdf/elektron/powerCap"
|
||||
"gitlab.com/spdf/elektron/schedulers"
|
||||
"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"
|
||||
)
|
||||
|
||||
var master = flag.String("master", "", "Location of leading Mesos master -- <mesos-master>:<port>")
|
||||
|
|
Reference in a new issue