Files
aris/apps/aelis-backend/src/session/feed-source-provider.ts

8 lines
268 B
TypeScript
Raw Normal View History

import type { FeedSource } from "@aelis/core"
export interface FeedSourceProvider {
/** The source ID this provider is responsible for (e.g., "aelis.location"). */
readonly sourceId: string
feedSourceForUser(userId: string, config: unknown): Promise<FeedSource>
}