Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

add go package for gonavitia #184

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions request.proto
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
syntax = "proto2";
import "type.proto";
package pbnavitia;
option go_package = "./pbnavitia";

message CalendarsRequest {
optional string start_date = 1;
Expand Down
1 change: 1 addition & 0 deletions response.proto
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ syntax = "proto2";
import "type.proto";

package pbnavitia;
option go_package = "./pbnavitia";

enum CyclePathType {
NoCycleLane = 0;
Expand Down
1 change: 1 addition & 0 deletions stat.proto
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
syntax = "proto2";
import "type.proto";
package pbnavitia;
option go_package = "./pbnavitia";

message StatParameter {
optional string key = 1;
Expand Down
1 change: 1 addition & 0 deletions task.proto
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
syntax = "proto2";
package pbnavitia;
option go_package = "./pbnavitia";

enum Action{
RELOAD = 0;
Expand Down
1 change: 1 addition & 0 deletions type.proto
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
syntax = "proto2";
package pbnavitia;
option go_package = "./pbnavitia";

enum NavitiaType {
LINE = 1;
Expand Down