mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
b91df61994
## About the changes 1. Re-use existing methods in extract-user.ts:70f6a07f2c/src/lib/features/events/event-service.ts (L93-L101)
2. Move event-service and event-store to features/event 3. Add export default in previous paths for backward compatibility:70f6a07f2c/src/lib/services/event-service.ts (L1-L4)
and70f6a07f2c/src/lib/db/event-store.ts (L1-L4)
5 lines
170 B
TypeScript
5 lines
170 B
TypeScript
import EventService from '../features/events/event-service';
|
|
// For backward compatibility
|
|
export * from '../features/events/event-service';
|
|
export default EventService;
|