2019-09-14 18:46:01 +04:00
|
|
|
// NNM-Club torrent filess mass downloader
|
|
|
|
// Created for Uploaders group
|
2019-09-14 18:51:32 +04:00
|
|
|
// Copyright (c) 2012-2019 Vladimir "fat0troll" Hodakov
|
2019-09-14 18:46:01 +04:00
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2019-09-14 18:51:32 +04:00
|
|
|
"gitlab.com/fat0troll/uploader_tools/internal/context"
|
2019-09-14 18:46:01 +04:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2019-09-14 18:51:32 +04:00
|
|
|
c := context.New()
|
|
|
|
c.Init()
|
|
|
|
c.Logger.Info().Msg("NNM-Club mass torrent files downloader is starting")
|
|
|
|
c.InitConfig()
|
2019-09-14 18:46:01 +04:00
|
|
|
}
|