sys1yagi / mastodon4j

mastodon client for java, kotlin https://github.com/tootsuite/documentation/blob/master/Using-the-API/API.md

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

indicate whether need access token in each methods.

sys1yagi opened this issue · comments

Add interface for each method.
The interface is divided as follows.

interface TimelinesInterface {
  interface Public {
     // ...
  }
  interface AuthRequired {
    // ...
  }
}