summary refs log tree commit diff
path: root/src/connections/Spotify/SpotifySettings.ts
diff options
context:
space:
mode:
authorPuyodead1 <puyodead@proton.me>2022-12-22 21:55:24 -0500
committerPuyodead1 <puyodead@proton.me>2023-03-18 19:26:15 -0400
commit3c7cde5985a96d2a841419a7fb439cf73cd68fe1 (patch)
tree3c9fe3d00e0b33a32cb12536dc953bfbc2abfc39 /src/connections/Spotify/SpotifySettings.ts
parentAdd reddit connection (diff)
downloadserver-3c7cde5985a96d2a841419a7fb439cf73cd68fe1.tar.xz
Add spotify connection
Diffstat (limited to '')
-rw-r--r--src/connections/Spotify/SpotifySettings.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/connections/Spotify/SpotifySettings.ts b/src/connections/Spotify/SpotifySettings.ts
new file mode 100644

index 00000000..e73c0304 --- /dev/null +++ b/src/connections/Spotify/SpotifySettings.ts
@@ -0,0 +1,5 @@ +export class SpotifySettings { + enabled: boolean = false; + clientId: string | null = null; + clientSecret: string | null = null; +}