eth-indexer/internal/sub/sub.go

7 lines
62 B
Go
Raw Normal View History

2024-06-10 09:36:26 +02:00
package sub
type Sub interface {
Process() error
Close()
}