Add login support, golangci-lint config
This commit is contained in:
23
cmd/massdl.go
Normal file
23
cmd/massdl.go
Normal file
@@ -0,0 +1,23 @@
|
||||
// NNM-Club torrent filess mass downloader
|
||||
// Created for Uploaders group
|
||||
// Copyright (c) 2012-2019 Vladimir "fat0troll" Hodakov
|
||||
|
||||
package main
|
||||
|
||||
import (
|
||||
"gitlab.com/fat0troll/uploader_tools/domains/loginer/v1"
|
||||
"gitlab.com/fat0troll/uploader_tools/internal/context"
|
||||
)
|
||||
|
||||
func main() {
|
||||
c := context.New()
|
||||
c.Init()
|
||||
c.Logger.Info().Msg("NNM-Club mass torrent files downloader is starting")
|
||||
c.InitConfig()
|
||||
|
||||
loginerv1.New(c)
|
||||
|
||||
c.Flagger.Parse()
|
||||
|
||||
loginerv1.Process()
|
||||
}
|
Reference in New Issue
Block a user