Ability to search by artist, album, track

This commit is contained in:
simojenki
2021-04-20 13:21:58 +10:00
parent 759592767f
commit d3d83df03c
12 changed files with 903 additions and 130 deletions

7
src/clock.ts Normal file
View File

@@ -0,0 +1,7 @@
import dayjs, { Dayjs } from "dayjs";
export interface Clock {
now(): Dayjs;
}
export const SystemClock = { now: () => dayjs() };