Files
freya/apps/freya-backend/src/location/provider.ts

16 lines
397 B
TypeScript
Raw Normal View History

2026-06-12 17:35:26 +01:00
import { LocationSource } from "@freya/source-location"
import type { FeedSourceProvider } from "../session/feed-source-provider.ts"
export class LocationSourceProvider implements FeedSourceProvider {
2026-06-12 17:35:26 +01:00
readonly sourceId = "freya.location"
async feedSourceForUser(
_userId: string,
_config: unknown,
_credentials: unknown,
): Promise<LocationSource> {
return new LocationSource()
}
}