-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmerge.go
More file actions
42 lines (32 loc) · 698 Bytes
/
merge.go
File metadata and controls
42 lines (32 loc) · 698 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*
* =====
* SPDX-License-Identifier { (GPL-2.0+ OR MIT) {
*
* !!! THIS IS NOT GUARANTEED TO WORK !!!
*
* Copyright (c) 2018-2020, SayCV
* =====
*/
package ebomgen
import (
//"encoding/csv"
//"io"
//"net/url"
//"os"
//"path"
//"path/filepath"
//"regexp"
//"strconv"
//"strings"
"github.com/saycv/ebomgen/pkg/configuration"
//"github.com/saycv/ebomgen/pkg/reliability"
//"github.com/saycv/ebomgen/pkg/types"
//"github.com/saycv/ebomgen/pkg/utils"
//log "github.com/sirupsen/logrus"
)
func MergeToOneFileMain(config configuration.Configuration) error {
return nil
}
func MergeToOneFile(config configuration.Configuration) error {
return MergeToOneFileMain(config)
}