A kotlin wrapper, that supports java, for the Trello REST API
Make sure to replace VERSION with the version shown above
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository><dependency>
<groupId>com.github.TheForbiddenAi</groupId>
<artifactId>TrelloWrapper-Kotlin</artifactId>
<version>VERSION</version>
</dependency>To start using this wrapper, you must first create an instance of TrelloApi
val trelloApi = TrelloApi(trelloApiKey, trelloToken)After creating an instance of TrelloApi, getting a board is as simple as just using the getBoard function
val board = trelloApi.getBoard(boardId)To get a board's lists you can simply use the getLists function
val lists = board.getLists()This is just a brief overview of the many features this wrapper has