Skip to content

Simple-Kotlin-Project/simple-kotlin-multipart

Repository files navigation

Simple kotlin multipart library

Maven Central GitHub Kotlin GitHub Workflow Status (with branch)

Small library for working with multipart content type in http protocol

How to add library to you project

Maven

<dependency>
    <groupId>io.github.edmondantes</groupId>
    <artifactId>simple-kotlin-multipart</artifactId>
    <version>${simple_library_version}</version>
</dependency>

Gradle (kotlin)

implementation("io.github.edmondantes:simple-kotlin-multipart:${simple_library_version}")

Gradle (groovy)

implementation "io.github.edmondantes:simple-kotlin-multipart:${simple_library_version}"

Main classes

Class io.github.edmondantesx.multipart.Multipart is main representation of multipart content type.

For transformation this class you can use io.github.edmondantes.multipart.impl.DefaultMultipartEncoderDecoder