refs #164 Remove undefined Pleroma method

This commit is contained in:
AkiraFukushima 2020-02-01 15:29:06 +09:00
parent c6dbf4fc63
commit 23a4e8e346

View file

@ -1,19 +1,11 @@
import MegalodonInterface, { NoImplementedError } from './megalodon'
import Mastodon from './mastodon'
import StreamListener from './mastodon/stream_listener'
import APIClient from './pleroma/api_client'
import Response from './response'
import { Status } from './entities/status'
import { Relationship } from './entities/relationship'
export default class Pleroma extends Mastodon implements MegalodonInterface {
/**
* GET /api/pleroma/healthcheck
*/
public static healthcheck(): Promise<Response<{}>> {
return APIClient.get<{}>('/api/pleroma/healthcheck')
}
// ======================================
// accounts
// ======================================