Bumped Gradle to version 8.8

This commit is contained in:
Erik C. Thauvin 2024-06-03 17:58:31 -07:00
parent 6c031aedc5
commit 63645f7cf4
Signed by: erik
GPG key ID: 776702A6A2DA330E
14 changed files with 141 additions and 64 deletions

View file

@ -48,14 +48,13 @@ class Config private constructor(builder: Builder) {
* See the [is.gd Shortening](https://is.gd/apishorteningreference.php) or
* [is.gd Lookup](https://is.gd/apilookupreference.php) APIs.
*/
data class Builder(
var url: String = "",
data class Builder(var url: String) {
var shorturl: String = "",
var callback: String = "",
var logstats: Boolean = false,
var format: Format = Format.SIMPLE,
var isVgd: Boolean = false
) {
/**
* The url parameter is the address that you want to shorten.
*/