mirror of
https://github.com/0ceanSlim/grain.git
synced 2024-11-22 16:47:13 +00:00
19 lines
391 B
Go
19 lines
391 B
Go
package events
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"go.mongodb.org/mongo-driver/mongo"
|
|
)
|
|
|
|
func HandleUnknownEvent(ctx context.Context, evt Event, collection *mongo.Collection) error {
|
|
_, err := collection.InsertOne(ctx, evt)
|
|
if err != nil {
|
|
return fmt.Errorf("Error inserting unknown event into MongoDB: %v", err)
|
|
}
|
|
|
|
fmt.Println("Inserted unknown event into MongoDB:", evt.ID)
|
|
return nil
|
|
}
|