16 lines
451 B
Lua
16 lines
451 B
Lua
|
-------------------------------------------------
|
||
|
-- Allows to store API keys in one place
|
||
|
--
|
||
|
-- @author Pavel Makhov
|
||
|
-- @copyright 2018 Pavel Makhov
|
||
|
--------------------------------------------
|
||
|
|
||
|
local secrets = {
|
||
|
-- Yandex.Translate API key - https://tech.yandex.com/translate/
|
||
|
translate_widget_api_key = '<API_KEY>',
|
||
|
-- OpenWeatherMap API key - https://openweathermap.org/appid
|
||
|
weather_widget_api_key = '<API_KEY>'
|
||
|
}
|
||
|
|
||
|
return secrets
|