https://github.com/helpermethod/lipstick
https://github.com/helpermethod/lipstick
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/helpermethod/lipstick
- Owner: helpermethod
- License: apache-2.0
- Created: 2024-03-11T07:14:56.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-17T11:58:43.000Z (3 months ago)
- Last Synced: 2025-03-17T12:43:24.322Z (3 months ago)
- Size: 5.86 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
}
```