-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial commit of fabric grpc bindings for go
Signed-off-by: Matthew Sykes <[email protected]>
- Loading branch information
Showing
44 changed files
with
19,049 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#SPDX-License-Identifier: Apache-2.0 | ||
|
||
.DS_Store | ||
*~ | ||
*# | ||
.#* | ||
.*.sw* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# SPDX-License-Identifier: Apache-2.0 | ||
.gitignore | ||
.whitelist | ||
CODE_OF_CONDUCT.md | ||
CONTRIBUTING.md | ||
LICENSE | ||
README.md | ||
azure-pipelines.yml | ||
go.mod |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Code of Conduct Guidelines | ||
========================== | ||
|
||
Please review the Hyperledger [Code of Conduct](https://wiki.hyperledger.org/community/hyperledger-project-code-of-conduct) | ||
before participating. It is important that we keep things civil. | ||
|
||
<a rel="license" href="http://creativecommons.org/licenses/by/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by/4.0/88x31.png" /></a><br />This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
## Contributing | ||
|
||
We welcome contributions to the Hyperledger Fabric Project in many forms, and there's always plenty to do! | ||
|
||
Please visit the [contributors guide](http://hyperledger-fabric.readthedocs.io/en/latest/CONTRIBUTING.html) in the docs to learn how to make contributions to this exciting project. | ||
|
||
<a rel="license" href="http://creativecommons.org/licenses/by/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by/4.0/88x31.png" /></a><br />This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Hyperledger Fabric gRPC and Protocol Buffer Bindings for go | ||
|
||
This repository contains the Hyperledger Fabric [grpc] service and [protocol | ||
buffer][protobuf] bindings for [go]. | ||
|
||
## Community | ||
|
||
We welcome contributions to the Hyperledger Fabric project in many forms. | ||
There’s always plenty to do! Check the documentation on | ||
[how to contribute][contributing] to this project for the full details. | ||
|
||
- [Hyperledger Community](https://www.hyperledger.org/community) | ||
- [Hyperledger mailing lists and archives](http://lists.hyperledger.org/) | ||
- [Hyperledger Chat](http://chat.hyperledger.org/channel/fabric) | ||
- [Hyperledger Fabric Issue Tracking (JIRA)](https://jira.hyperledger.org/secure/Dashboard.jspa?selectPageId=10104) | ||
- [Hyperledger Fabric Wiki](https://wiki.hyperledger.org/display/Fabric) | ||
- [Hyperledger Wiki](https://wiki.hyperledger.org/) | ||
- [Hyperledger Code of Conduct](https://wiki.hyperledger.org/display/HYP/Hyperledger+Code+of+Conduct) | ||
|
||
## License <a name="license"></a> | ||
|
||
Hyperledger Project source code files are made available under the Apache License, Version 2.0 (Apache-2.0), located in the [LICENSE](LICENSE) file. Hyperledger Project documentation files are made available under the Creative Commons Attribution 4.0 International License (CC-BY-4.0), available at http://creativecommons.org/licenses/by/4.0/. | ||
|
||
[contributing]: https://hyperledger-fabric.readthedocs.io/en/latest/CONTRIBUTING.html | ||
[go]: https://golang.org/ | ||
[grpc]: https://grpc.io/docs/guides/ | ||
[protobuf]: https://github.com/protocolbuffers/protobuf/ | ||
[rocketchat-image]: https://open.rocket.chat/images/join-chat.svg | ||
[rocketchat-url]: https://chat.hyperledger.org/channel/fabric |
Oops, something went wrong.