BUILD: fix the import paths
Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
parent
96b1951184
commit
19c4932cba
|
@ -2,15 +2,15 @@ package main
|
||||||
|
|
||||||
// This should build the control panel correctly on each platform
|
// This should build the control panel correctly on each platform
|
||||||
|
|
||||||
// Then, upload the binaries to mirrors.wit.com/cloud/control-panel
|
// Then, upload the binaries to mirrors.wit.org/cloud/control-panel
|
||||||
|
|
||||||
import "log"
|
import "log"
|
||||||
//import "fmt"
|
//import "fmt"
|
||||||
//import "time"
|
//import "time"
|
||||||
//import "os/user"
|
//import "os/user"
|
||||||
|
|
||||||
import "git.wit.com/wit/shell"
|
import "git.wit.org/wit/shell"
|
||||||
import build "git.wit.com/wit/cloud-control-panel-build"
|
import build "git.wit.org/wit/cloud-control-panel-build"
|
||||||
|
|
||||||
var filename string
|
var filename string
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@ import "io/ioutil"
|
||||||
import "strings"
|
import "strings"
|
||||||
|
|
||||||
import "github.com/golang/protobuf/jsonpb"
|
import "github.com/golang/protobuf/jsonpb"
|
||||||
import pb "git.wit.org/wit/witProtobuf"
|
import pb "git.wit.org/jcarr/witProtobuf"
|
||||||
import "git.wit.org/wit/shell"
|
import "git.wit.org/wit/shell"
|
||||||
|
|
||||||
import "github.com/davecgh/go-spew/spew"
|
import "github.com/davecgh/go-spew/spew"
|
||||||
|
|
|
@ -3,7 +3,7 @@ package main
|
||||||
import "log"
|
import "log"
|
||||||
|
|
||||||
import "github.com/golang/protobuf/proto"
|
import "github.com/golang/protobuf/proto"
|
||||||
import pb "git.wit.org/wit/witProtobuf"
|
import pb "git.wit.org/jcarr/witProtobuf"
|
||||||
import "git.wit.org/wit/gui"
|
import "git.wit.org/wit/gui"
|
||||||
|
|
||||||
var mychannel chan *pb.Event
|
var mychannel chan *pb.Event
|
||||||
|
|
|
@ -11,7 +11,7 @@ import "time"
|
||||||
import "github.com/gorilla/websocket"
|
import "github.com/gorilla/websocket"
|
||||||
|
|
||||||
import "github.com/golang/protobuf/proto"
|
import "github.com/golang/protobuf/proto"
|
||||||
import pb "git.wit.org/wit/witProtobuf"
|
import pb "git.wit.org/jcarr/witProtobuf"
|
||||||
// import "git.wit.org/wit/gui"
|
// import "git.wit.org/wit/gui"
|
||||||
|
|
||||||
var gorillaConn *websocket.Conn
|
var gorillaConn *websocket.Conn
|
||||||
|
|
|
@ -4,7 +4,7 @@ import "log"
|
||||||
import "fmt"
|
import "fmt"
|
||||||
|
|
||||||
import "git.wit.org/wit/gui"
|
import "git.wit.org/wit/gui"
|
||||||
import pb "git.wit.org/wit/witProtobuf"
|
import pb "git.wit.org/jcarr/witProtobuf"
|
||||||
|
|
||||||
func makeCloudInfoBox(gw *gui.GuiWindow) {
|
func makeCloudInfoBox(gw *gui.GuiWindow) {
|
||||||
log.Println("makeCloudInfoBox() START gw =", gw)
|
log.Println("makeCloudInfoBox() START gw =", gw)
|
||||||
|
|
|
@ -7,7 +7,7 @@ import "time"
|
||||||
// import "runtime/debug"
|
// import "runtime/debug"
|
||||||
|
|
||||||
import "git.wit.org/wit/gui"
|
import "git.wit.org/wit/gui"
|
||||||
import pb "git.wit.org/wit/witProtobuf"
|
import pb "git.wit.org/jcarr/witProtobuf"
|
||||||
// import "github.com/davecgh/go-spew/spew"
|
// import "github.com/davecgh/go-spew/spew"
|
||||||
|
|
||||||
//
|
//
|
||||||
|
|
|
@ -4,7 +4,7 @@ import "fmt"
|
||||||
import "image/color"
|
import "image/color"
|
||||||
// import "runtime"
|
// import "runtime"
|
||||||
|
|
||||||
import pb "git.wit.org/wit/witProtobuf"
|
import pb "git.wit.org/jcarr/witProtobuf"
|
||||||
import "git.wit.org/wit/gui"
|
import "git.wit.org/wit/gui"
|
||||||
|
|
||||||
var windowsTextVeryLightGrey = color.RGBA{10, 10, 10, 10}
|
var windowsTextVeryLightGrey = color.RGBA{10, 10, 10, 10}
|
||||||
|
|
|
@ -4,7 +4,7 @@ import "log"
|
||||||
import "fmt"
|
import "fmt"
|
||||||
|
|
||||||
import "git.wit.org/wit/gui"
|
import "git.wit.org/wit/gui"
|
||||||
import pb "git.wit.org/wit/witProtobuf"
|
import pb "git.wit.org/jcarr/witProtobuf"
|
||||||
|
|
||||||
//
|
//
|
||||||
// THIS IS THE STANDARD VM DISPLAY TABLE
|
// THIS IS THE STANDARD VM DISPLAY TABLE
|
||||||
|
|
2
login.go
2
login.go
|
@ -5,7 +5,7 @@ import "fmt"
|
||||||
import "time"
|
import "time"
|
||||||
|
|
||||||
import "git.wit.org/wit/gui"
|
import "git.wit.org/wit/gui"
|
||||||
import pb "git.wit.org/wit/witProtobuf"
|
import pb "git.wit.org/jcarr/witProtobuf"
|
||||||
|
|
||||||
// import "github.com/davecgh/go-spew/spew"
|
// import "github.com/davecgh/go-spew/spew"
|
||||||
|
|
||||||
|
|
2
main.go
2
main.go
|
@ -13,7 +13,7 @@ import "reflect"
|
||||||
import "github.com/miekg/dns"
|
import "github.com/miekg/dns"
|
||||||
|
|
||||||
import "git.wit.org/wit/gui"
|
import "git.wit.org/wit/gui"
|
||||||
import pb "git.wit.org/wit/witProtobuf"
|
import pb "git.wit.org/jcarr/witProtobuf"
|
||||||
import "git.wit.org/jcarr/dnssecsocket"
|
import "git.wit.org/jcarr/dnssecsocket"
|
||||||
import "git.wit.org/wit/shell"
|
import "git.wit.org/wit/shell"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue