56 lines
895 B
Lua
56 lines
895 B
Lua
|
--This is an example
|
||
|
do local _ = {
|
||
|
-- Bitly
|
||
|
bitly_access_token = "",
|
||
|
|
||
|
-- Cloudconvert
|
||
|
cloudconvert_apikey = "",
|
||
|
|
||
|
-- Derpibooru
|
||
|
derpibooru_apikey = "",
|
||
|
|
||
|
-- Facebook
|
||
|
fb_access_token = "",
|
||
|
|
||
|
-- Gender-API
|
||
|
gender_apikey = "",
|
||
|
|
||
|
-- Google
|
||
|
google_apikey = "",
|
||
|
google_cse_id = "",
|
||
|
|
||
|
-- Instagram
|
||
|
instagram_access_token = "",
|
||
|
|
||
|
-- Lyricsnmusic
|
||
|
lyricsnmusic_apikey = "",
|
||
|
|
||
|
-- Neutrino-API (IP-Info)
|
||
|
neutrino_userid = "",
|
||
|
neutrino_apikey = "",
|
||
|
|
||
|
-- Page2Images
|
||
|
page2images_restkey = "",
|
||
|
|
||
|
-- Soundcloud
|
||
|
soundcloud_client_id = "",
|
||
|
|
||
|
-- Superfeedr
|
||
|
superfeedr_authorization = "=",
|
||
|
|
||
|
-- Twitter
|
||
|
tw_consumer_key = "",
|
||
|
tw_consumer_secret = "",
|
||
|
tw_access_token = "",
|
||
|
tw_access_token_secret = "",
|
||
|
|
||
|
-- X-Mashape-Key
|
||
|
x_mashape_key = "",
|
||
|
|
||
|
-- Yandex
|
||
|
yandex_translate_apikey = "",
|
||
|
yandex_rich_content_apikey = ""
|
||
|
}
|
||
|
return _
|
||
|
end
|