Skip to content
This repository has been archived by the owner on Jan 9, 2021. It is now read-only.

markusressel/freenas-api-client

Repository files navigation

ARCHIVED

Due to the industry moving towards a docker-centric, kubernetes world and the differences between administrating FreeBSD and Linux I chose to move away from FreeNAS. Altough I really liked developing this api client (and it never really saw the light of day) I don't have a personal interest in developing it anymore.

FreeNas_REST_ApiClient

FreeNAS REST Api Client written in Kotlin using RxKotlin and Fuel

Status

Master Beta Dev
codebeat badge codebeat badge codebeat badge

How to use

Gradle

To use this library just include it in your depencencies using

repositories {
    ...
    maven { url "https://jitpack.io" }
}

in your project build.gradle file and

dependencies {
    compile('com.github.markusressel:Freenas_REST_ApiClient:1.0.0') {
        exclude module: 'app'
        transitive = true
    }
}

in your desired module build.gradle file.