mirror of
https://github.com/v2fly/domain-list-community.git
synced 2026-02-04 04:53:14 +07:00
Improve codes (#3242)
* main.go: improve code * main.go: move refMap from global variable to local * main.go: allow tld to be a parent domain * datdump: improve code
This commit is contained in:
@@ -31,11 +31,13 @@ type DomainList struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (d *DomainRule) domain2String() string {
|
func (d *DomainRule) domain2String() string {
|
||||||
dstring := d.Type + ":" + d.Value
|
var dstr strings.Builder
|
||||||
|
dstr.Grow(len(d.Type) + len(d.Value) + 10)
|
||||||
|
fmt.Fprintf(&dstr, "%s:%s", d.Type, d.Value)
|
||||||
if len(d.Attrs) != 0 {
|
if len(d.Attrs) != 0 {
|
||||||
dstring += ":@" + strings.Join(d.Attrs, ",@")
|
fmt.Fprintf(&dstr, ":@%s", strings.Join(d.Attrs, ",@"))
|
||||||
}
|
}
|
||||||
return dstring
|
return dstr.String()
|
||||||
}
|
}
|
||||||
|
|
||||||
func loadGeosite(path string) ([]DomainList, map[string]*DomainList, error) {
|
func loadGeosite(path string) ([]DomainList, map[string]*DomainList, error) {
|
||||||
@@ -82,10 +84,10 @@ func loadGeosite(path string) ([]DomainList, map[string]*DomainList, error) {
|
|||||||
func exportSite(name string, domainListByName map[string]*DomainList) error {
|
func exportSite(name string, domainListByName map[string]*DomainList) error {
|
||||||
domainList, ok := domainListByName[strings.ToUpper(name)]
|
domainList, ok := domainListByName[strings.ToUpper(name)]
|
||||||
if !ok {
|
if !ok {
|
||||||
return fmt.Errorf("list '%s' does not exist", name)
|
return fmt.Errorf("list %q does not exist", name)
|
||||||
}
|
}
|
||||||
if len(domainList.Rules) == 0 {
|
if len(domainList.Rules) == 0 {
|
||||||
return fmt.Errorf("list '%s' is empty", name)
|
return fmt.Errorf("list %q is empty", name)
|
||||||
}
|
}
|
||||||
file, err := os.Create(filepath.Join(*outputDir, name+".yml"))
|
file, err := os.Create(filepath.Join(*outputDir, name+".yml"))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@@ -119,22 +121,16 @@ func exportAll(filename string, domainLists []DomainList) error {
|
|||||||
return w.Flush()
|
return w.Flush()
|
||||||
}
|
}
|
||||||
|
|
||||||
func main() {
|
func run() error {
|
||||||
flag.Parse()
|
// Make sure output directory exists
|
||||||
|
if err := os.MkdirAll(*outputDir, 0755); err != nil {
|
||||||
// Create output directory if not exist
|
return fmt.Errorf("failed to create output directory: %w", err)
|
||||||
if _, err := os.Stat(*outputDir); os.IsNotExist(err) {
|
|
||||||
if mkErr := os.MkdirAll(*outputDir, 0755); mkErr != nil {
|
|
||||||
fmt.Println("Failed to create output directory:", mkErr)
|
|
||||||
os.Exit(1)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fmt.Printf("Loading %s...\n", *inputData)
|
fmt.Printf("loading source data %q...\n", *inputData)
|
||||||
domainLists, domainListByName, err := loadGeosite(*inputData)
|
domainLists, domainListByName, err := loadGeosite(*inputData)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Println("Failed to loadGeosite:", err)
|
return fmt.Errorf("failed to loadGeosite: %w", err)
|
||||||
os.Exit(1)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
var exportListSlice []string
|
var exportListSlice []string
|
||||||
@@ -150,15 +146,24 @@ func main() {
|
|||||||
for _, eplistname := range exportListSlice {
|
for _, eplistname := range exportListSlice {
|
||||||
if strings.EqualFold(eplistname, "_all_") {
|
if strings.EqualFold(eplistname, "_all_") {
|
||||||
if err := exportAll(filepath.Base(*inputData)+"_plain.yml", domainLists); err != nil {
|
if err := exportAll(filepath.Base(*inputData)+"_plain.yml", domainLists); err != nil {
|
||||||
fmt.Println("Failed to exportAll:", err)
|
fmt.Printf("failed to exportAll: %v\n", err)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if err := exportSite(eplistname, domainListByName); err != nil {
|
if err := exportSite(eplistname, domainListByName); err != nil {
|
||||||
fmt.Println("Failed to exportSite:", err)
|
fmt.Printf("failed to exportSite: %v\n", err)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
fmt.Printf("list: '%s' has been exported successfully.\n", eplistname)
|
fmt.Printf("list: %q has been exported successfully.\n", eplistname)
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
flag.Parse()
|
||||||
|
if err := run(); err != nil {
|
||||||
|
fmt.Printf("Fatal error: %v\n", err)
|
||||||
|
os.Exit(1)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
179
main.go
179
main.go
@@ -23,7 +23,6 @@ var (
|
|||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
refMap = make(map[string][]*Entry)
|
|
||||||
plMap = make(map[string]*ParsedList)
|
plMap = make(map[string]*ParsedList)
|
||||||
finalMap = make(map[string][]*Entry)
|
finalMap = make(map[string][]*Entry)
|
||||||
cirIncMap = make(map[string]bool) // Used for circular inclusion detection
|
cirIncMap = make(map[string]bool) // Used for circular inclusion detection
|
||||||
@@ -78,18 +77,14 @@ func makeProtoList(listName string, entries []*Entry) (*router.GeoSite, error) {
|
|||||||
return site, nil
|
return site, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func writePlainList(exportedName string) error {
|
func writePlainList(listname string, entries []*Entry) error {
|
||||||
targetList, exist := finalMap[strings.ToUpper(exportedName)]
|
file, err := os.Create(filepath.Join(*outputDir, strings.ToLower(listname)+".txt"))
|
||||||
if !exist || len(targetList) == 0 {
|
|
||||||
return fmt.Errorf("list %q does not exist or is empty.", exportedName)
|
|
||||||
}
|
|
||||||
file, err := os.Create(filepath.Join(*outputDir, strings.ToLower(exportedName)+".txt"))
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
defer file.Close()
|
defer file.Close()
|
||||||
w := bufio.NewWriter(file)
|
w := bufio.NewWriter(file)
|
||||||
for _, entry := range targetList {
|
for _, entry := range entries {
|
||||||
fmt.Fprintln(w, entry.Plain)
|
fmt.Fprintln(w, entry.Plain)
|
||||||
}
|
}
|
||||||
return w.Flush()
|
return w.Flush()
|
||||||
@@ -99,7 +94,7 @@ func parseEntry(line string) (Entry, error) {
|
|||||||
var entry Entry
|
var entry Entry
|
||||||
parts := strings.Fields(line)
|
parts := strings.Fields(line)
|
||||||
if len(parts) == 0 {
|
if len(parts) == 0 {
|
||||||
return entry, fmt.Errorf("empty line: %q", line)
|
return entry, fmt.Errorf("empty line")
|
||||||
}
|
}
|
||||||
|
|
||||||
// Parse type and value
|
// Parse type and value
|
||||||
@@ -138,7 +133,7 @@ func parseEntry(line string) (Entry, error) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Parse/Check attributes and affiliations
|
// Parse attributes and affiliations
|
||||||
for _, part := range parts[1:] {
|
for _, part := range parts[1:] {
|
||||||
if strings.HasPrefix(part, "@") {
|
if strings.HasPrefix(part, "@") {
|
||||||
attr := strings.ToLower(part[1:]) // Trim attribute prefix `@` character
|
attr := strings.ToLower(part[1:]) // Trim attribute prefix `@` character
|
||||||
@@ -159,10 +154,13 @@ func parseEntry(line string) (Entry, error) {
|
|||||||
// Sort attributes
|
// Sort attributes
|
||||||
slices.Sort(entry.Attrs)
|
slices.Sort(entry.Attrs)
|
||||||
// Formated plain entry: type:domain.tld:@attr1,@attr2
|
// Formated plain entry: type:domain.tld:@attr1,@attr2
|
||||||
entry.Plain = entry.Type + ":" + entry.Value
|
var plain strings.Builder
|
||||||
|
plain.Grow(len(entry.Type) + len(entry.Value) + 10)
|
||||||
|
fmt.Fprintf(&plain, "%s:%s", entry.Type, entry.Value)
|
||||||
if len(entry.Attrs) != 0 {
|
if len(entry.Attrs) != 0 {
|
||||||
entry.Plain = entry.Plain + ":@" + strings.Join(entry.Attrs, ",@")
|
fmt.Fprintf(&plain, ":@%s", strings.Join(entry.Attrs, ",@"))
|
||||||
}
|
}
|
||||||
|
entry.Plain = plain.String()
|
||||||
|
|
||||||
return entry, nil
|
return entry, nil
|
||||||
}
|
}
|
||||||
@@ -200,25 +198,21 @@ func validateSiteName(name string) bool {
|
|||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
func loadData(path string) error {
|
func loadData(path string) ([]*Entry, error) {
|
||||||
file, err := os.Open(path)
|
file, err := os.Open(path)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return nil, err
|
||||||
}
|
}
|
||||||
defer file.Close()
|
defer file.Close()
|
||||||
|
|
||||||
listName := strings.ToUpper(filepath.Base(path))
|
var entries []*Entry
|
||||||
if !validateSiteName(listName) {
|
|
||||||
return fmt.Errorf("invalid list name: %s", listName)
|
|
||||||
}
|
|
||||||
scanner := bufio.NewScanner(file)
|
scanner := bufio.NewScanner(file)
|
||||||
lineIdx := 0
|
lineIdx := 0
|
||||||
for scanner.Scan() {
|
for scanner.Scan() {
|
||||||
line := scanner.Text()
|
line := scanner.Text()
|
||||||
lineIdx++
|
lineIdx++
|
||||||
// Remove comments
|
|
||||||
if idx := strings.Index(line, "#"); idx != -1 {
|
if idx := strings.Index(line, "#"); idx != -1 {
|
||||||
line = line[:idx]
|
line = line[:idx] // Remove comments
|
||||||
}
|
}
|
||||||
line = strings.TrimSpace(line)
|
line = strings.TrimSpace(line)
|
||||||
if line == "" {
|
if line == "" {
|
||||||
@@ -226,11 +220,11 @@ func loadData(path string) error {
|
|||||||
}
|
}
|
||||||
entry, err := parseEntry(line)
|
entry, err := parseEntry(line)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("error in %s at line %d: %v", path, lineIdx, err)
|
return entries, fmt.Errorf("error in %q at line %d: %w", path, lineIdx, err)
|
||||||
}
|
}
|
||||||
refMap[listName] = append(refMap[listName], &entry)
|
entries = append(entries, &entry)
|
||||||
}
|
}
|
||||||
return nil
|
return entries, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func parseList(refName string, refList []*Entry) error {
|
func parseList(refName string, refList []*Entry) error {
|
||||||
@@ -242,7 +236,7 @@ func parseList(refName string, refList []*Entry) error {
|
|||||||
for _, entry := range refList {
|
for _, entry := range refList {
|
||||||
if entry.Type == dlc.RuleTypeInclude {
|
if entry.Type == dlc.RuleTypeInclude {
|
||||||
if len(entry.Affs) != 0 {
|
if len(entry.Affs) != 0 {
|
||||||
return fmt.Errorf("affiliation is not allowed for include:%s", entry.Value)
|
return fmt.Errorf("affiliation is not allowed for include:%q", entry.Value)
|
||||||
}
|
}
|
||||||
inc := &Inclusion{Source: entry.Value}
|
inc := &Inclusion{Source: entry.Value}
|
||||||
for _, attr := range entry.Attrs {
|
for _, attr := range entry.Attrs {
|
||||||
@@ -268,11 +262,31 @@ func parseList(refName string, refList []*Entry) error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func polishList(roughMap *map[string]*Entry) []*Entry {
|
func isMatchAttrFilters(entry *Entry, incFilter *Inclusion) bool {
|
||||||
finalList := make([]*Entry, 0, len(*roughMap))
|
if len(incFilter.MustAttrs) == 0 && len(incFilter.BanAttrs) == 0 {
|
||||||
queuingList := make([]*Entry, 0, len(*roughMap)) // Domain/full entries without attr
|
return true
|
||||||
|
}
|
||||||
|
if len(entry.Attrs) == 0 {
|
||||||
|
return len(incFilter.MustAttrs) == 0
|
||||||
|
}
|
||||||
|
for _, m := range incFilter.MustAttrs {
|
||||||
|
if !slices.Contains(entry.Attrs, m) {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for _, b := range incFilter.BanAttrs {
|
||||||
|
if slices.Contains(entry.Attrs, b) {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
func polishList(roughMap map[string]*Entry) []*Entry {
|
||||||
|
finalList := make([]*Entry, 0, len(roughMap))
|
||||||
|
queuingList := make([]*Entry, 0, len(roughMap)) // Domain/full entries without attr
|
||||||
domainsMap := make(map[string]bool)
|
domainsMap := make(map[string]bool)
|
||||||
for _, entry := range *roughMap {
|
for _, entry := range roughMap {
|
||||||
switch entry.Type { // Bypass regexp, keyword and "full/domain with attr"
|
switch entry.Type { // Bypass regexp, keyword and "full/domain with attr"
|
||||||
case dlc.RuleTypeRegexp:
|
case dlc.RuleTypeRegexp:
|
||||||
finalList = append(finalList, entry)
|
finalList = append(finalList, entry)
|
||||||
@@ -306,9 +320,6 @@ func polishList(roughMap *map[string]*Entry) []*Entry {
|
|||||||
break
|
break
|
||||||
}
|
}
|
||||||
pd = pd[idx+1:] // Go for next parent
|
pd = pd[idx+1:] // Go for next parent
|
||||||
if !strings.Contains(pd, ".") {
|
|
||||||
break
|
|
||||||
} // Not allow tld to be a parent
|
|
||||||
if domainsMap[pd] {
|
if domainsMap[pd] {
|
||||||
isRedundant = true
|
isRedundant = true
|
||||||
break
|
break
|
||||||
@@ -331,32 +342,11 @@ func resolveList(pl *ParsedList) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if cirIncMap[pl.Name] {
|
if cirIncMap[pl.Name] {
|
||||||
return fmt.Errorf("circular inclusion in: %s", pl.Name)
|
return fmt.Errorf("circular inclusion in: %q", pl.Name)
|
||||||
}
|
}
|
||||||
cirIncMap[pl.Name] = true
|
cirIncMap[pl.Name] = true
|
||||||
defer delete(cirIncMap, pl.Name)
|
defer delete(cirIncMap, pl.Name)
|
||||||
|
|
||||||
isMatchAttrFilters := func(entry *Entry, incFilter *Inclusion) bool {
|
|
||||||
if len(incFilter.MustAttrs) == 0 && len(incFilter.BanAttrs) == 0 {
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
if len(entry.Attrs) == 0 {
|
|
||||||
return len(incFilter.MustAttrs) == 0
|
|
||||||
}
|
|
||||||
|
|
||||||
for _, m := range incFilter.MustAttrs {
|
|
||||||
if !slices.Contains(entry.Attrs, m) {
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
for _, b := range incFilter.BanAttrs {
|
|
||||||
if slices.Contains(entry.Attrs, b) {
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
|
|
||||||
roughMap := make(map[string]*Entry) // Avoid basic duplicates
|
roughMap := make(map[string]*Entry) // Avoid basic duplicates
|
||||||
for _, dentry := range pl.Entries { // Add direct entries
|
for _, dentry := range pl.Entries { // Add direct entries
|
||||||
roughMap[dentry.Plain] = dentry
|
roughMap[dentry.Plain] = dentry
|
||||||
@@ -375,80 +365,75 @@ func resolveList(pl *ParsedList) error {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
finalMap[pl.Name] = polishList(&roughMap)
|
finalMap[pl.Name] = polishList(roughMap)
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func main() {
|
func run() error {
|
||||||
flag.Parse()
|
|
||||||
|
|
||||||
dir := *dataPath
|
dir := *dataPath
|
||||||
fmt.Println("Use domain lists in", dir)
|
fmt.Printf("using domain lists data in %q\n", dir)
|
||||||
|
|
||||||
// Generate refMap
|
// Generate refMap
|
||||||
err := filepath.Walk(dir, func(path string, info os.FileInfo, err error) error {
|
refMap := make(map[string][]*Entry)
|
||||||
|
err := filepath.WalkDir(dir, func(path string, d os.DirEntry, err error) error {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if info.IsDir() {
|
if d.IsDir() {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
if err := loadData(path); err != nil {
|
listName := strings.ToUpper(filepath.Base(path))
|
||||||
return err
|
if !validateSiteName(listName) {
|
||||||
|
return fmt.Errorf("invalid list name: %q", listName)
|
||||||
}
|
}
|
||||||
return nil
|
refMap[listName], err = loadData(path)
|
||||||
|
return err
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Println("Failed to loadData:", err)
|
return fmt.Errorf("failed to loadData: %w", err)
|
||||||
os.Exit(1)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Generate plMap
|
// Generate plMap
|
||||||
for refName, refList := range refMap {
|
for refName, refList := range refMap {
|
||||||
if err := parseList(refName, refList); err != nil {
|
if err := parseList(refName, refList); err != nil {
|
||||||
fmt.Println("Failed to parseList:", err)
|
return fmt.Errorf("failed to parseList %q: %w", refName, err)
|
||||||
os.Exit(1)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Generate finalMap
|
// Generate finalMap
|
||||||
for _, pl := range plMap {
|
for plname, pl := range plMap {
|
||||||
if err := resolveList(pl); err != nil {
|
if err := resolveList(pl); err != nil {
|
||||||
fmt.Println("Failed to resolveList:", err)
|
return fmt.Errorf("failed to resolveList %q: %w", plname, err)
|
||||||
os.Exit(1)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Create output directory if not exist
|
// Make sure output directory exists
|
||||||
if _, err := os.Stat(*outputDir); os.IsNotExist(err) {
|
if err := os.MkdirAll(*outputDir, 0755); err != nil {
|
||||||
if mkErr := os.MkdirAll(*outputDir, 0755); mkErr != nil {
|
return fmt.Errorf("failed to create output directory: %w", err)
|
||||||
fmt.Println("Failed to create output directory:", mkErr)
|
|
||||||
os.Exit(1)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Export plaintext list
|
// Export plaintext list
|
||||||
var exportListSlice []string
|
for rawEpList := range strings.SplitSeq(*exportLists, ",") {
|
||||||
for raw := range strings.SplitSeq(*exportLists, ",") {
|
if epList := strings.TrimSpace(rawEpList); epList != "" {
|
||||||
if trimmed := strings.TrimSpace(raw); trimmed != "" {
|
entries, exist := finalMap[strings.ToUpper(epList)]
|
||||||
exportListSlice = append(exportListSlice, trimmed)
|
if !exist || len(entries) == 0 {
|
||||||
|
fmt.Printf("list %q does not exist or is empty\n", epList)
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
if err := writePlainList(epList, entries); err != nil {
|
||||||
|
fmt.Printf("failed to write list %q: %v\n", epList, err)
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
fmt.Printf("list %q has been generated successfully.\n", epList)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
for _, exportList := range exportListSlice {
|
|
||||||
if err := writePlainList(exportList); err != nil {
|
|
||||||
fmt.Println("Failed to write list:", err)
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
fmt.Printf("list %q has been generated successfully.\n", exportList)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Generate dat file
|
// Generate dat file
|
||||||
protoList := new(router.GeoSiteList)
|
protoList := new(router.GeoSiteList)
|
||||||
for siteName, siteEntries := range finalMap {
|
for siteName, siteEntries := range finalMap {
|
||||||
site, err := makeProtoList(siteName, siteEntries)
|
site, err := makeProtoList(siteName, siteEntries)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Println("Failed to makeProtoList:", err)
|
return fmt.Errorf("failed to makeProtoList %q: %w", siteName, err)
|
||||||
os.Exit(1)
|
|
||||||
}
|
}
|
||||||
protoList.Entry = append(protoList.Entry, site)
|
protoList.Entry = append(protoList.Entry, site)
|
||||||
}
|
}
|
||||||
@@ -459,13 +444,19 @@ func main() {
|
|||||||
|
|
||||||
protoBytes, err := proto.Marshal(protoList)
|
protoBytes, err := proto.Marshal(protoList)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Println("Failed to marshal:", err)
|
return fmt.Errorf("failed to marshal: %w", err)
|
||||||
os.Exit(1)
|
|
||||||
}
|
}
|
||||||
if err := os.WriteFile(filepath.Join(*outputDir, *outputName), protoBytes, 0644); err != nil {
|
if err := os.WriteFile(filepath.Join(*outputDir, *outputName), protoBytes, 0644); err != nil {
|
||||||
fmt.Println("Failed to write output:", err)
|
return fmt.Errorf("failed to write output: %w", err)
|
||||||
|
}
|
||||||
|
fmt.Printf("%q has been generated successfully.\n", *outputName)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
flag.Parse()
|
||||||
|
if err := run(); err != nil {
|
||||||
|
fmt.Printf("Fatal error: %v\n", err)
|
||||||
os.Exit(1)
|
os.Exit(1)
|
||||||
} else {
|
|
||||||
fmt.Println(*outputName, "has been generated successfully.")
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user