mirror of
https://github.com/alexgo-io/gaze-indexer.git
synced 2026-04-30 20:52:01 +08:00
16 lines
250 B
Go
16 lines
250 B
Go
package entity
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/gaze-network/indexer-network/common"
|
|
)
|
|
|
|
type IndexerState struct {
|
|
CreatedAt time.Time
|
|
ClientVersion string
|
|
DBVersion int32
|
|
EventHashVersion int32
|
|
Network common.Network
|
|
}
|