feat(topics) - add list topic
This commit is contained in:
3
src/utils/basic-auth.ts
Normal file
3
src/utils/basic-auth.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
export const basicAuth = (username: string, password: string) => {
|
||||
return "Basic " + btoa(`${username}:${password}`);
|
||||
};
|
||||
Reference in New Issue
Block a user