Skip to content
This repository has been archived by the owner on Dec 25, 2024. It is now read-only.

Commit

Permalink
fix(protobuf): changed package name
Browse files Browse the repository at this point in the history
  • Loading branch information
Wittano committed May 26, 2024
1 parent 3913db3 commit ee3599f
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion proto/admin.proto
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
syntax = "proto3";

option go_package = "./api";
option go_package = "github.com/wittano/komputer";
import "google/protobuf/empty.proto";
import "proto/request.proto";
package komputer;
Expand Down
2 changes: 1 addition & 1 deletion proto/audio.proto
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
syntax = "proto3";

option go_package = "./api";
option go_package = "github.com/wittano/komputer";
import "google/protobuf/empty.proto";
import "proto/request.proto";
package komputer;
Expand Down
2 changes: 1 addition & 1 deletion proto/joke.proto
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
syntax = "proto3";

option go_package = "./api";
option go_package = "github.com/wittano/komputer";
import "google/protobuf/empty.proto";
import "proto/request.proto";
package komputer;
Expand Down
2 changes: 1 addition & 1 deletion proto/logs.proto
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
syntax = "proto3";

option go_package = "./api";
option go_package = "github.com/wittano/komputer";
import "google/protobuf/empty.proto";
import "google/protobuf/timestamp.proto";
package komputer;
Expand Down
2 changes: 1 addition & 1 deletion proto/options.proto
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
syntax = "proto3";

option go_package = "./api";
option go_package = "github.com/wittano/komputer";
package komputer;

enum Features {
Expand Down
2 changes: 1 addition & 1 deletion proto/request.proto
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
syntax = "proto3";

option go_package = "./api";
option go_package = "github.com/wittano/komputer";
package komputer;

message Pagination {
Expand Down

0 comments on commit ee3599f

Please sign in to comment.