1
0
mirror of https://github.com/tooot-app/app synced 2025-06-05 22:19:13 +02:00
Added follow as menu option
This commit is contained in:
xmflsct
2023-01-08 16:59:35 +01:00
parent 9e0e8db82a
commit 6ce78e94f8
25 changed files with 611 additions and 241 deletions

View File

@ -21,14 +21,14 @@ const apiGeneral = async <T = unknown>({
body
}: Params): Promise<PagedResponse<T>> => {
console.log(
ctx.bgGreen.bold(' API general ') +
ctx.bgMagenta.bold(' General ') +
' ' +
domain +
' ' +
method +
ctx.green(' -> ') +
ctx.magenta(' -> ') +
`/${url}` +
(params ? ctx.green(' -> ') : ''),
(params ? ctx.magenta(' -> ') : ''),
params ? params : ''
)