A website inspired by Last.fm that will keep track of your listening statistics
lastfm music statistics
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Route functions

oscar345 c396a614 13132395

+39 -28
+39 -28
web/lib/.gen/routes.ts
··· 1 + 1 2 import type { Method } from "$lib/types"; 2 3 3 - export function GET_Index(): { url: string; method: Method } { 4 - return { 5 - url: `/`, 6 - method: "get", 7 - }; 4 + export function GET_Index() : { url: string, method: Method} { 5 + return { 6 + url: `/`, 7 + method: "get" 8 + } 8 9 } 9 10 10 - export function GET_ArtistsByID(id: string | number): { 11 - url: string; 12 - method: Method; 13 - } { 14 - return { 15 - url: `/artists/${id}`, 16 - method: "get", 17 - }; 11 + 12 + export function GET_ArtistsByID(id: string | number) : { url: string, method: Method} { 13 + return { 14 + url: `/artists/${id}`, 15 + method: "get" 16 + } 17 + } 18 + 19 + 20 + export function GET_Friends() : { url: string, method: Method} { 21 + return { 22 + url: `/friends`, 23 + method: "get" 24 + } 18 25 } 19 26 20 - export function GET_Friends(): { url: string; method: Method } { 21 - return { 22 - url: `/friends`, 23 - method: "get", 24 - }; 27 + 28 + export function GET_Library() : { url: string, method: Method} { 29 + return { 30 + url: `/library`, 31 + method: "get" 32 + } 25 33 } 26 34 27 - export function GET_Library(): { url: string; method: Method } { 28 - return { 29 - url: `/library`, 30 - method: "get", 31 - }; 35 + 36 + export function GET_LibraryArtists() : { url: string, method: Method} { 37 + return { 38 + url: `/library/artists`, 39 + method: "get" 40 + } 32 41 } 33 42 34 - export function GET_LibraryArtists(): { url: string; method: Method } { 35 - return { 36 - url: `/library/artists`, 37 - method: "get", 38 - }; 43 + 44 + export function GET_Mixtapes() : { url: string, method: Method} { 45 + return { 46 + url: `/mixtapes`, 47 + method: "get" 48 + } 39 49 } 50 +