2018-01-21 03:52:04 +01:00
|
|
|
-------------------------------------------------
|
2019-01-26 04:26:16 +01:00
|
|
|
-- Allows to store client specific settings in one place
|
2018-01-21 03:52:04 +01:00
|
|
|
--
|
|
|
|
-- @author Pavel Makhov
|
2019-01-26 04:26:16 +01:00
|
|
|
-- @copyright 2019 Pavel Makhov
|
2018-01-21 03:52:04 +01:00
|
|
|
--------------------------------------------
|
|
|
|
|
2018-01-21 03:42:28 +01:00
|
|
|
local secrets = {
|
2018-01-21 03:52:04 +01:00
|
|
|
-- Yandex.Translate API key - https://tech.yandex.com/translate/
|
2019-01-26 04:26:16 +01:00
|
|
|
translate_widget_api_key = 'API_KEY',
|
|
|
|
|
2018-01-21 03:52:04 +01:00
|
|
|
-- OpenWeatherMap API key - https://openweathermap.org/appid
|
2019-01-26 04:26:16 +01:00
|
|
|
weather_widget_api_key = 'API_KEY',
|
|
|
|
weather_widget_city = 'Montreal,ca'
|
2018-01-21 03:42:28 +01:00
|
|
|
}
|
|
|
|
|
2018-01-21 03:52:04 +01:00
|
|
|
return secrets
|