We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b71954e commit 36fed83Copy full SHA for 36fed83
2 files changed
go.mod
@@ -1,4 +1,4 @@
1
-module github.com/goextension/extmap
+module github.com/goextension/gomap
2
3
go 1.13
4
map.go
@@ -4,11 +4,12 @@ import (
"encoding/json"
5
"encoding/xml"
6
"errors"
7
- "github.com/fatih/structs"
8
- "github.com/mitchellh/mapstructure"
9
"net/url"
10
"sort"
11
"strings"
+
+ "github.com/fatih/structs"
12
+ "github.com/mitchellh/mapstructure"
13
)
14
15
//CustomHeader xml header
@@ -21,7 +22,7 @@ type String string
21
22
var ErrNilMap = errors.New("nil map")
23
24
func init() {
- structs.DefaultTagName = "map"
25
+ //structs.DefaultTagName = "map"
26
}
27
28
//String String
0 commit comments