eth-indexer/internal/sub/sub.go

9 lines
70 B
Go
Raw Normal View History

2024-04-23 13:33:05 +02:00
package sub
type (
Sub interface {
Process() error
Close()
}
)