mirror of
https://github.com/kennethnym/freya
synced 2026-06-23 01:44:55 +01:00
chore: rename aelis to freya (#122)
This commit is contained in:
15
apps/freya-backend/src/location/provider.ts
Normal file
15
apps/freya-backend/src/location/provider.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
import { LocationSource } from "@freya/source-location"
|
||||
|
||||
import type { FeedSourceProvider } from "../session/feed-source-provider.ts"
|
||||
|
||||
export class LocationSourceProvider implements FeedSourceProvider {
|
||||
readonly sourceId = "freya.location"
|
||||
|
||||
async feedSourceForUser(
|
||||
_userId: string,
|
||||
_config: unknown,
|
||||
_credentials: unknown,
|
||||
): Promise<LocationSource> {
|
||||
return new LocationSource()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user