mirror of
https://github.com/kennethnym/freya
synced 2026-06-18 15:46:12 +01:00
16 lines
398 B
TypeScript
16 lines
398 B
TypeScript
import { LocationSource } from "@freya/source-location"
|
|
|
|
import type { FeedSourceProvider } from "../session/feed-source-provider.ts"
|
|
|
|
export class LocationSourceProvider implements FeedSourceProvider {
|
|
readonly sourceId = LocationSource.id
|
|
|
|
async feedSourceForUser(
|
|
_userId: string,
|
|
_config: unknown,
|
|
_credentials: unknown,
|
|
): Promise<LocationSource> {
|
|
return new LocationSource()
|
|
}
|
|
}
|