mirror of
https://github.com/grassrootseconomics/eth-tracker.git
synced 2025-02-23 08:02:16 +01:00
13 lines
167 B
Go
13 lines
167 B
Go
package pub
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/grassrootseconomics/eth-tracker/pkg/event"
|
|
)
|
|
|
|
type Pub interface {
|
|
Send(context.Context, event.Event) error
|
|
Close()
|
|
}
|