mirror of
https://github.com/planetmint/planetmint-go.git
synced 2025-06-12 17:16:38 +00:00

This is the quasi-standard and fixes the error below: ``` $ go get -u github.com/planetmint/planetmint-go@v0.1.0 go: github.com/planetmint/planetmint-go@v0.1.0: parsing go.mod: module declares its path as: planetmint-go but was required as: github.com/planetmint/planetmint-go ``` Signed-off-by: Julian Strobl <jmastr@mailbox.org>
12 lines
210 B
Protocol Buffer
12 lines
210 B
Protocol Buffer
syntax = "proto3";
|
|
package planetmintgo.asset;
|
|
|
|
option go_package = "github.com/planetmint/planetmint-go/x/asset/types";
|
|
|
|
message Asset {
|
|
|
|
string hash = 1;
|
|
string signature = 2;
|
|
string pubkey = 3;
|
|
}
|