refactor: create go.mod for x/params (#17776)

Co-authored-by: Julien Robert <julien@rbrt.fr>
This commit is contained in:
Emmanuel T Odeke
2023-10-03 12:56:07 +00:00
committed by GitHub
co-authored by Julien Robert
parent 3a04a9f7d7
commit 0692fdc6fd
57 changed files with 1693 additions and 141 deletions
+2 -2
View File
@@ -14,8 +14,8 @@ deps:
- remote: buf.build
owner: googleapis
repository: googleapis
commit: cc916c31859748a68fd229a3c8d7a2e8
digest: shake256:469b049d0eb04203d5272062636c078decefc96fec69739159c25d85349c50c34c7706918a8b216c5c27f76939df48452148cff8c5c3ae77fa6ba5c25c1b8bf8
commit: 28151c0d0a1641bf938a7672c500e01d
digest: shake256:49215edf8ef57f7863004539deff8834cfb2195113f0b890dd1f67815d9353e28e668019165b9d872395871eeafcbab3ccfdb2b5f11734d3cca95be9e8d139de
- remote: buf.build
owner: protocolbuffers
repository: wellknowntypes
+1 -1
View File
@@ -7,6 +7,6 @@ import "cosmos/app/v1alpha1/module.proto";
// Module is the config object of the params module.
message Module {
option (cosmos.app.v1alpha1.module) = {
go_import: "github.com/cosmos/cosmos-sdk/x/params"
go_import: "cosmossdk.io/x/params"
};
}
+1 -1
View File
@@ -1,7 +1,7 @@
syntax = "proto3";
package cosmos.params.v1beta1;
option go_package = "github.com/cosmos/cosmos-sdk/x/params/types/proposal";
option go_package = "cosmossdk.io/x/params/types/proposal";
option (gogoproto.equal_all) = true;
import "gogoproto/gogo.proto";
+1 -1
View File
@@ -6,7 +6,7 @@ import "google/api/annotations.proto";
import "cosmos/params/v1beta1/params.proto";
import "amino/amino.proto";
option go_package = "github.com/cosmos/cosmos-sdk/x/params/types/proposal";
option go_package = "cosmossdk.io/x/params/types/proposal";
// Query defines the gRPC querier service.
service Query {