refactor: migrate build system from Taskfile to Makefile

This commit is contained in:
Prad Nukala
2024-11-26 10:54:32 -05:00
parent 50217d169d
commit b9b868d55a
8 changed files with 7065 additions and 89 deletions
+14
View File
@@ -11,6 +11,7 @@ message GenesisState {
// Params defines all the parameters of the module.
Params params = 1 [(gogoproto.nullable) = false];
}
// Params defines the set of module parameters.
message Params {
option (amino.name) = "vault/params";
@@ -22,6 +23,19 @@ message Params {
Schema schema = 4;
}
// Capability reprensents the available capabilities of a decentralized web node
message Capability {
string name = 1;
string description = 2;
}
// Resource reprensents the available resources of a decentralized web node
message Resource {
string name = 1;
string description = 2;
}
// Schema is the Database Model for Decentralized Web Nodes
message Schema {
int32 version = 1;
string account = 2;