You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the proto files defined in Corda-IBC exist under proto/src/main/proto/..., but these paths are difficult to use and inappropriate, for other languages like Go or Rust.
To fix this, we should do:
Rename the Gradle subproject proto to gentypes.
Make a new directory proto and move the proto files out of gentypes/src/main/proto/... to the new directory.
Fix gentypes/build.gradle to refer it to the proto files.
Also fix go/... and rust/... to use the new paths.
The text was updated successfully, but these errors were encountered:
Currently the proto files defined in Corda-IBC exist under
proto/src/main/proto/...
, but these paths are difficult to use and inappropriate, for other languages like Go or Rust.To fix this, we should do:
proto
togentypes
.proto
and move the proto files out ofgentypes/src/main/proto/...
to the new directory.gentypes/build.gradle
to refer it to the proto files.go/...
andrust/...
to use the new paths.The text was updated successfully, but these errors were encountered: