mirror of
https://github.com/SimplexDevelopment/Polarize.git
synced 2025-06-30 13:46:41 +00:00
12 lines
270 B
Java
12 lines
270 B
Java
package io.github.simplexdev.caravan.base;
|
|
|
|
import io.github.simplexdev.caravan.CaravanAPI;
|
|
|
|
public final class Caravan implements CaravanAPI {
|
|
private static final CaravanAPI api = new Caravan();
|
|
|
|
public static CaravanAPI getAPI() {
|
|
return api;
|
|
}
|
|
}
|