Using the API

Setting everything up

Before starting to actually use the API, you will have to add the JitPack repository and the dependency to your project:

<repositories>
	<repository>
	    	<id>jitpack.io</id>
	    	<url>https://jitpack.io</url>
		</repository>
</repositories>
 ...
<dependencies>
	<dependency>
		<groupId>com.github.myth-MC.banco</groupId>
	    	<artifactId>banco-api</artifactId>
	    	<version>0.6.1</version>
	</dependency>
</dependencies>

You can then access every API-related function by calling Banco.get()

We recommend having a look at banco's Javadoc.

Last updated