Welcome to mirror list, hosted at ThFree Co, Russian Federation.

DeckAPI.java « api « deck « nextcloud « niedermann « it « java « main « src « app - github.com/stefan-niedermann/nextcloud-deck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 44ac4fc2e064d0b6adc0509d10b00f4faba48e24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package it.niedermann.nextcloud.deck.api;


import java.util.List;

import io.reactivex.Observable;
import it.niedermann.nextcloud.deck.model.Board;
import retrofit2.http.GET;

public interface DeckAPI {

        @GET("boards")
        Observable<List<Board>> boards();
}