feat(GODT-2801): User Service Integration

Enable the User Event, User Identity and User SMTP service. The services
don't persist any data at the moment to avoid conflict with the existing
event loop.
This commit is contained in:
Leander Beernaert
2023-07-24 17:09:03 +02:00
parent 0b35f41ffd
commit 09c523e2d2
2 changed files with 84 additions and 6 deletions

View File

@ -35,3 +35,7 @@ func (eventBase) _isEvent() {}
type EventPublisher interface {
PublishEvent(ctx context.Context, event Event)
}
type NullEventPublisher struct{}
func (NullEventPublisher) PublishEvent(_ context.Context, _ Event) {}