1
uploader_tools/domains/loginer/v1/checks.go

13 lines
509 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// NNM-Club torrent filess mass downloader
// Created for Uploaders group
// Copyright (c) 2012-2019 Vladimir "fat0troll" Hodakov
package loginerv1
// checkConfig checks if there's some errors in config file
func checkConfig() {
if c.Config.URL == "" || c.Config.Password == "" || c.Config.Username == "" {
dlog.Fatal().Msg("Конфиг не заполнен или заполнен не до конца. Запустите программу с ключом -auth для авторизации.")
}
}