Implement basic listing and creating playlist

This commit is contained in:
2025-11-14 01:58:46 +05:00
parent 3186fa16e5
commit 15389b9de1
38 changed files with 810 additions and 19 deletions

View File

@ -12,7 +12,11 @@ export const axiosInstance = <T>(
...config,
...{
...options,
baseURL: baseURL
baseURL: baseURL,
auth: {
username: 'user',
password: 'password',
}
},
cancelToken: source.token,
});