feat(topics) - add list topic

This commit is contained in:
2026-02-06 15:32:46 +07:00
parent 2ce6a4ab8c
commit 2172614789
15 changed files with 188 additions and 86 deletions

3
src/utils/basic-auth.ts Normal file
View File

@@ -0,0 +1,3 @@
export const basicAuth = (username: string, password: string) => {
return "Basic " + btoa(`${username}:${password}`);
};