mirror of
https://github.com/kennethnym/aris.git
synced 2026-03-20 17:11:17 +00:00
Replace per-source services (LocationService, WeatherService, TflService, FeedEngineService) with a single UserSessionManager that owns all per-user state. Source creation is delegated to thin FeedSourceProvider implementations per source type. Co-authored-by: Ona <no-reply@ona.com>
8 lines
230 B
TypeScript
8 lines
230 B
TypeScript
export type {
|
|
FeedSourceProvider,
|
|
FeedSourceProviderFn,
|
|
FeedSourceProviderInput,
|
|
} from "./feed-source-provider.ts"
|
|
export { UserSession } from "./user-session.ts"
|
|
export { UserSessionManager } from "./user-session-manager.ts"
|