This commit is contained in:
Erik C. Thauvin 2020-03-02 18:32:22 -08:00
parent 48d929868d
commit 0aeb385238
2 changed files with 5 additions and 3 deletions

View file

@ -1,3 +1,5 @@
# Module bitly-shorten # Module bitly-shorten
[Bitly Shortener for Kotlin/Java](https://github.com/ethauvin/bitly-shorten), a simple implementation of the [Bitly API v4](https://dev.bitly.com/v4/). [Bitly Shortener for Kotlin/Java](https://github.com/ethauvin/bitly-shorten)
A simple implementation of the link shortening ([bitlinks](https://dev.bitly.com/v4/#tag/Bitlinks)) abilities of the [Bitly v4 API](https://dev.bitly.com/v4).

View file

@ -47,10 +47,10 @@ open class Constants private constructor() {
*/ */
const val ENV_ACCESS_TOKEN = "BITLY_ACCESS_TOKEN" const val ENV_ACCESS_TOKEN = "BITLY_ACCESS_TOKEN"
/** Empty String */ /** Empty String. */
const val EMPTY = "" const val EMPTY = ""
/** Empty JSON Object */ /** Empty JSON Object. */
const val EMPTY_JSON = "{}" const val EMPTY_JSON = "{}"
} }
} }