Connect Athena to Spotify

This commit is contained in:
2022-01-15 19:35:43 +01:00
parent f6070b20ee
commit 240fcbac90
23 changed files with 684 additions and 99 deletions

16
app/Types/IStats.ts Normal file
View File

@@ -0,0 +1,16 @@
export interface Time {
hours: number
minutes: number
seconds: number
}
export interface Stats {
range: {
start: string
end: string
}
development_time: Time
commands_ran: number
builds_ran: number
}