fyne-on/composables/client.ts

10 lines
339 B
TypeScript
Raw Normal View History

2022-11-23 07:08:36 +08:00
import { login } from 'masto'
import { currentUser } from './accounts'
import { DEFAULT_SERVER } from '~/constants'
2022-11-13 13:34:43 +08:00
2022-11-23 07:08:36 +08:00
// TODO: improve upsteam to make this synchronous (delayed auth)
export const masto = await login({
url: `https://${currentUser.value?.server || DEFAULT_SERVER}`,
accessToken: currentUser.value?.token || undefined,
})