From 498bfe82f073d5641a42b057512396cc967524c1 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Sat, 22 Feb 2025 17:48:10 -0600 Subject: switch from virtbuf to virtpb --- create.go | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'create.go') diff --git a/create.go b/create.go index 878a140..71bc2f8 100644 --- a/create.go +++ b/create.go @@ -8,7 +8,7 @@ import ( "path/filepath" "strings" - pb "go.wit.com/lib/protobuf/virtbuf" + "go.wit.com/lib/protobuf/virtpb" "go.wit.com/log" "google.golang.org/protobuf/proto" ) @@ -25,14 +25,14 @@ func createFilename(dir string, filename string) error { hostname := strings.TrimSuffix(filename, filetype) log.Info("hostname ==", hostname) - newDroplet := pb.NewDefaultDroplet(hostname) - newDisk := new(pb.Disk) + newDroplet := virtpb.NewDefaultDroplet(hostname) + newDisk := new(virtpb.Disk) newDisk.Filename = filename newDisk.Filepath = dir newDroplet.Disks = append(newDroplet.Disks, newDisk) - var eth *pb.Network - eth = new(pb.Network) + var eth *virtpb.Network + eth = new(virtpb.Network) eth.Name = "worldbr" newDroplet.Networks = append(newDroplet.Networks, eth) @@ -59,7 +59,7 @@ func createFilename(dir string, filename string) error { } // send protobuf as wire data -func postDropletWIRE(url string, d *pb.Droplet) (string, error) { +func postDropletWIRE(url string, d *virtpb.Droplet) (string, error) { var bytes []byte var err error // Automatically marshal to protobuf binary format @@ -74,11 +74,11 @@ func postDropletWIRE(url string, d *pb.Droplet) (string, error) { } // send protobuf in json format -func postDropletJSON(url string, d *pb.Droplet) (string, error) { +func postDropletJSON(url string, d *virtpb.Droplet) (string, error) { // send protobuf as JSON bytes, err := d.MarshalJSON() if err != nil { - log.Info("virtbuf.MarshalJson() failed:", err) + log.Info("virtpb.MarshalJson() failed:", err) return "", err } return post(url, bytes) -- cgit v1.2.3