refactor(lists): add GetList api method

This commit is contained in:
LucasGGamerM
2025-04-01 11:36:43 -03:00
parent 97ba55dcab
commit 68e5de8599

View File

@@ -0,0 +1,10 @@
package org.joinmastodon.android.api.requests.lists;
import org.joinmastodon.android.api.MastodonAPIRequest;
import org.joinmastodon.android.model.FollowList;
public class GetList extends MastodonAPIRequest<FollowList> {
public GetList(String id) {
super(HttpMethod.GET, "/lists/" + id, FollowList.class);
}
}