cosmos-sdk/indexer/base/module_schema.go
Aaron Craelius 74ae427575
feat: indexer base types (#20629)
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
2024-06-17 19:10:20 +00:00

8 lines
257 B
Go

package indexerbase
// ModuleSchema represents the logical schema of a module for purposes of indexing and querying.
type ModuleSchema struct {
// ObjectTypes describe the types of objects that are part of the module's schema.
ObjectTypes []ObjectType
}