cosmos-sdk/indexer/postgres/options.go
Aaron Craelius 9376db5508
feat(indexer): postgres schema creation + CI config (#20701)
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
Co-authored-by: marbar3778 <marbar3778@yahoo.com>
2024-07-18 09:34:09 +00:00

11 lines
304 B
Go

package postgres
// Options are the options for module and object indexers.
type Options struct {
// DisableRetainDeletions disables retain deletions functionality even on object types that have it set.
DisableRetainDeletions bool
// Logger is the logger for the indexer to use.
Logger SqlLogger
}