Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
xw-g committed Dec 29, 2023
1 parent d1284ed commit c37224d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
18 changes: 9 additions & 9 deletions bootz/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ package(
)

proto_library(
name = "bootz_proto",
name = "gnoi_bootz_proto",
srcs = ["bootz.proto"],
deps = [
"//types:types_proto",
Expand All @@ -32,30 +32,30 @@ proto_library(
)

cc_proto_library(
name = "bootz_cc_proto",
deps = [":bootz_proto"],
name = "gnoi_bootz_cc_proto",
deps = [":gnoi_bootz_proto"],
)

cc_grpc_library(
name = "bootz_cc_grpc_proto",
srcs = [":bootz_proto"],
srcs = [":gnoi_bootz_proto"],
grpc_only = True,
deps = [":bootz_cc_proto"],
deps = [":gnoi_bootz_cc_proto"],
)

go_proto_library(
name = "bootz_go_proto",
name = "gnoi_bootz_go_proto",
compilers = ["@io_bazel_rules_go//proto:go_grpc"],
importpath = "github.com/openconfig/gnoi/bootz",
proto = ":bootz_proto",
proto = ":gnoi_bootz_proto",
deps = [
"//types",
"@com_github_openconfig_bootz//bootz:bootz_go_proto",
],
)

go_library(
name = "bootz",
embed = [":bootz_go_proto"],
name = "gnoi_bootz",
embed = [":gnoi_bootz_go_proto"],
importpath = "github.com/openconfig/gnoi/bootz",
)
6 changes: 3 additions & 3 deletions bootz/bootz.proto
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

syntax = "proto3";

package gnoi.bootz;
package gnoi_bootz;

import "github.com/openconfig/bootz/proto/bootz.proto";
import "types/types.proto";
Expand Down Expand Up @@ -44,11 +44,11 @@ service Bootz {
message GetBootConfigRequest {}

message GetBootConfigResponse {
BootConfig boot_config = 1;
bootz.proto.BootConfig boot_config = 1;
}

message SetBootConfigRequest {
BootConfig boot_config = 1;
bootz.proto.BootConfig boot_config = 1;
}

message SetBootConfigResponse {}

0 comments on commit c37224d

Please sign in to comment.