release: v1.0.0-rc

This commit is contained in:
2024-09-05 09:48:59 +03:00
commit 30729e9318
50 changed files with 4404 additions and 0 deletions

12
internal/pub/pub.go Normal file
View File

@@ -0,0 +1,12 @@
package pub
import (
"context"
"github.com/grassrootseconomics/celo-tracker/pkg/event"
)
type Pub interface {
Send(context.Context, event.Event) error
Close()
}