mirror of
https://github.com/grassrootseconomics/eth-tracker.git
synced 2025-02-24 00:18:41 +01:00
13 lines
173 B
Go
13 lines
173 B
Go
|
package pub
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"github.com/grassrootseconomics/celo-tracker/internal/event"
|
||
|
)
|
||
|
|
||
|
type Pub interface {
|
||
|
Send(context.Context, event.Event) error
|
||
|
Close()
|
||
|
}
|