File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
package ns
2
2
3
3
import (
4
- "github.com/domainr/epp2/schema/common"
5
4
"github.com/domainr/epp2/schema/contact"
6
5
"github.com/domainr/epp2/schema/domain"
7
6
"github.com/domainr/epp2/schema/epp"
7
+ "github.com/domainr/epp2/schema/eppcom"
8
8
"github.com/domainr/epp2/schema/host"
9
9
)
10
10
@@ -17,7 +17,7 @@ const (
17
17
18
18
// Common is the IETF URN for the EPP common namespace.
19
19
// See https://www.iana.org/assignments/xml-registry/ns/eppcom-1.0.txt.
20
- Common = common .NS
20
+ Common = eppcom .NS
21
21
22
22
// Host is the IETF URN for the EPP contact namespace.
23
23
// See https://www.iana.org/assignments/xml-registry/ns/contact-1.0.txt.
Original file line number Diff line number Diff line change @@ -2,17 +2,17 @@ package protocol
2
2
3
3
import (
4
4
"github.com/domainr/epp2/schema"
5
- "github.com/domainr/epp2/schema/common"
6
5
"github.com/domainr/epp2/schema/contact"
7
6
"github.com/domainr/epp2/schema/domain"
8
7
"github.com/domainr/epp2/schema/epp"
8
+ "github.com/domainr/epp2/schema/eppcom"
9
9
)
10
10
11
11
// defaultSchemas is an array (not a slice) so DefaultSchemas can return a copy
12
12
// that callers can mutate.
13
13
var defaultSchemas = [... ]schema.Schema {
14
14
epp .Schema ,
15
- common .Schema ,
15
+ eppcom .Schema ,
16
16
contact .Schema ,
17
17
domain .Schema ,
18
18
}
Original file line number Diff line number Diff line change 1
- package common
1
+ package eppcom
2
2
3
3
import (
4
4
"github.com/domainr/epp2/internal/xml"
You can’t perform that action at this time.
0 commit comments