Move proto files to binary directory

This commit is contained in:
Tulir Asokan 2023-07-17 16:49:49 +03:00
parent b5bc6bfd61
commit 7008a9ca60
18 changed files with 9 additions and 9 deletions

Binary file not shown.

View file

@ -1,7 +1,7 @@
syntax = "proto3"; syntax = "proto3";
package authentication; package authentication;
option go_package = "../../binary"; option go_package = "../binary";
import "messages.proto"; import "messages.proto";
import "client.proto"; import "client.proto";

Binary file not shown.

View file

@ -1,7 +1,7 @@
syntax = "proto3"; syntax = "proto3";
package client; package client;
option go_package = "../../binary"; option go_package = "../binary";
import "messages.proto"; import "messages.proto";

Binary file not shown.

View file

@ -1,7 +1,7 @@
syntax = "proto3"; syntax = "proto3";
package conversations; package conversations;
option go_package = "../../binary"; option go_package = "../binary";
import "reactions.proto"; import "reactions.proto";

Binary file not shown.

View file

@ -1,7 +1,7 @@
syntax = "proto3"; syntax = "proto3";
package events; package events;
option go_package = "../../binary"; option go_package = "../binary";
import "conversations.proto"; import "conversations.proto";
import "authentication.proto"; import "authentication.proto";

Binary file not shown.

View file

@ -1,7 +1,7 @@
syntax = "proto3"; syntax = "proto3";
package media; package media;
option go_package = "../../binary"; option go_package = "../binary";
import "messages.proto"; import "messages.proto";

Binary file not shown.

View file

@ -1,7 +1,7 @@
syntax = "proto3"; syntax = "proto3";
package messages; package messages;
option go_package = "../../binary"; option go_package = "../binary";
message RegisterRefreshPayload { message RegisterRefreshPayload {
AuthMessage messageAuth = 1; AuthMessage messageAuth = 1;

Binary file not shown.

View file

@ -1,7 +1,7 @@
syntax = "proto3"; syntax = "proto3";
package reactions; package reactions;
option go_package = "../../binary"; option go_package = "../binary";
enum Reaction { enum Reaction {
UNSPECIFIED = 0; UNSPECIFIED = 0;

Binary file not shown.

View file

@ -1,7 +1,7 @@
syntax = "proto3"; syntax = "proto3";
package responses; package responses;
option go_package = "../../binary"; option go_package = "../binary";
import "events.proto"; import "events.proto";
import "messages.proto"; import "messages.proto";

Binary file not shown.

View file

@ -1,7 +1,7 @@
syntax = "proto3"; syntax = "proto3";
package settings; package settings;
option go_package = "../../binary"; option go_package = "../binary";
message Settings { message Settings {