eth-indexer/internal/sub/sub.go

9 lines
70 B
Go

package sub
type (
Sub interface {
Process() error
Close()
}
)