mirror of
https://github.com/planetmint/planetmint-go.git
synced 2025-11-24 14:35:47 +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>
13 lines
272 B
Protocol Buffer
13 lines
272 B
Protocol Buffer
syntax = "proto3";
|
|
package planetmintgo.asset;
|
|
|
|
import "gogoproto/gogo.proto";
|
|
|
|
option go_package = "github.com/planetmint/planetmint-go/x/asset/types";
|
|
|
|
// Params defines the parameters for the module.
|
|
message Params {
|
|
option (gogoproto.goproto_stringer) = false;
|
|
|
|
}
|