1

Add basic context with config creation

This commit is contained in:
2019-09-14 18:51:32 +04:00
parent bce5cef340
commit afc2a73ed6
6 changed files with 178 additions and 3 deletions

11
internal/config/config.go Normal file
View File

@@ -0,0 +1,11 @@
// NNM-Club torrent filess mass downloader
// Created for Uploaders group
// Copyright (c) 2012-2019 Vladimir "fat0troll" Hodakov
package config
type Config struct {
Username string `json:"username"`
Password string `json:"password"`
URL string `json:"url"`
}