tiktok-dl/models/config.go

32 lines
577 B
Go
Raw Normal View History

2020-01-19 02:11:53 +00:00
package models
import (
"flag"
"fmt"
"os"
)
// Config - Runtime configuration
var Config struct {
UserName string
OutputPath string
2020-01-19 14:43:32 +00:00
Debug bool
2020-01-19 02:11:53 +00:00
}
// GetConfig - Returns Config object
func GetConfig() {
outputPath := flag.String("output", "./downloads", "Output path")
2020-01-19 14:43:32 +00:00
debug := flag.Bool("debug", false, "enables debug mode")
2020-01-19 02:11:53 +00:00
flag.Parse()
args := flag.Args()
if len(args) < 1 {
fmt.Println("Usage: tiktok-dl [OPTIONS] TIKTOK_USERNAME")
os.Exit(2)
}
Config.UserName = flag.Args()[len(args)-1]
Config.OutputPath = *outputPath
2020-01-19 14:43:32 +00:00
Config.Debug = *debug
2020-01-19 02:11:53 +00:00
}