An open API service indexing awesome lists of open source software.

https://github.com/helpermethod/lipstick


https://github.com/helpermethod/lipstick

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

# 💄 lipstick

Turn ugly Java builders into beautiful, type-safe Kotlin DSLs.

```kotlin
val client: HttpClient =
HttpClient
.newBuilder()
.version(HttpClient.Version.HTTP_1_1)
.build()
```

```kotlin
val client = httpClient {
version = HttpClient.Version.HTTP_1_1
}
```