summaryrefslogtreecommitdiff
path: root/secrets.lua
blob: 8ce0cb05b373f2b83a3322e0c038ff57971f7e5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
-------------------------------------------------
-- 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