diff options
author | Özgür Kesim <oec@codeblau.de> | 2019-11-28 15:34:37 +0100 |
---|---|---|
committer | Özgür Kesim <oec@codeblau.de> | 2019-11-28 15:34:37 +0100 |
commit | 29336c8a7a98087bc83ef39d352282bc92b1b3c5 (patch) | |
tree | 49485efb2a9c4c7e7fb56ea509d2114691617ba8 /html | |
parent | e2fa16706ce0e07d474460acffa6c249ba7503b1 (diff) | |
parent | 72355741026e72d12ac13a528adf20ed51e2131d (diff) |
Merge branch 'master' of github.com:/oec/goparsify
Diffstat (limited to 'html')
-rw-r--r-- | html/html.go | 2 | ||||
-rw-r--r-- | html/html_test.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/html/html.go b/html/html.go index f6a715b..ce98d6c 100644 --- a/html/html.go +++ b/html/html.go @@ -1,7 +1,7 @@ package html import ( - . "github.com/vektah/goparsify" + . "github.com/oec/goparsify" ) func parse(input string) (result interface{}, err error) { diff --git a/html/html_test.go b/html/html_test.go index 79b0191..f0c2ac0 100644 --- a/html/html_test.go +++ b/html/html_test.go @@ -4,8 +4,8 @@ import ( "os" "testing" + "github.com/oec/goparsify" "github.com/stretchr/testify/require" - "github.com/vektah/goparsify" ) func TestParse(t *testing.T) { |