add more tests

This commit is contained in:
41666 2024-10-28 19:53:57 -07:00
parent 74add408e6
commit 4a528fe85a
9 changed files with 266 additions and 55 deletions

View file

@ -9,8 +9,13 @@ import (
"github.com/genudine/saerro-go/types"
)
type IIngest interface {
TrackPop(context.Context, types.PopEvent)
}
type Ingest struct {
PlayerStore store.IPlayerStore
PlayerStore store.IPlayerStore
VehicleStore store.IVehicleStore
}
func (i *Ingest) TrackPop(ctx context.Context, event types.PopEvent) {