~bigbes/tarantool

tarantool-protobuf

ref: 3235f34af486e3ef0043f8cb9d9230e29b919980 tarantool-protobuf/options/tarantool/tarantool.proto -rw-r--r-- 679 bytes
3235f34a — Eugene Blikh c_runtime: proto2 — required, defaults, groups, extensions (ra6 3i) 2 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Custom protobuf options for protoc-gen-tarantool.
//
// To use, place this file on your protoc include path and add to your .proto:
//
//   import "tarantool/tarantool.proto";
//   option (tarantool.lua_package) = "myapp.proto.foo";
//
syntax = "proto3";

package tarantool;

import "google/protobuf/descriptor.proto";

option go_package = "sourcecraft.dev/bigbes/tarantool-protobuf/options/tarantool;tarantoolpb";

extend google.protobuf.FileOptions {
  // Overrides the Lua require path for the generated module.
  // If unset, the path is derived from the proto package + filename:
  //   package foo.bar; file baz.proto -> "foo.bar.baz_pb"
  string lua_package = 60001;
}