You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
233 B
JavaScript

import Mastodon from "mastodon-api";
export class MastodonHandler{
constructor(baseUrl, token) {
this.client = new Mastodon({
api_url: `${baseUrl}/api/v1/`,
access_token: token,
})
}
}