This commit is contained in:
Erik C. Thauvin 2020-03-01 20:41:47 -08:00
parent b31b21d481
commit 19a883d074
2 changed files with 11 additions and 5 deletions

View file

@ -35,16 +35,22 @@ package net.thauvin.erik.bitly
/** Constants for this package. **/
open class Constants private constructor() {
companion object Constants {
/** The Bitly API base URL. **/
/** The Bitly API base URL.
*
* @value `https://api-ssl.bitly.com/v4`
*/
const val API_BASE_URL = "https://api-ssl.bitly.com/v4"
/** The API access token environment variable. **/
/** The API access token environment variable.
*
* @value `BITLY_ACCESS_TOKEN`
*/
const val ENV_ACCESS_TOKEN = "BITLY_ACCESS_TOKEN"
/** Empty String **/
/** Empty String */
const val EMPTY = ""
/** Empty JSON Object **/
/** Empty JSON Object */
const val EMPTY_JSON = "{}"
}
}