Load an auth token into the API config before we work with it

This commit is contained in:
Tristan Weir 2018-12-17 09:32:55 -08:00
Родитель 0869eb7302
Коммит 89d41f5cb6
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 1C5E6CBF4E06FB04
1 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -87,7 +87,10 @@ func main() {
panic(err)
}
// instantiate the searchable map of assets early so we can use it throughout
// generate a realtime auth0 auth token
conf.api.Token = GetAuthToken(conf.api)
// load a searchable map of assets from ServiceAPI
var serviceApiAssets = make(map[string]ServiceApiAsset)
err = GetAssets(serviceApiAssets, conf.api)
if err != nil {