From 74745651793980c3e335dca5c5784b659192b5e4 Mon Sep 17 00:00:00 2001 From: Maurice Makaay Date: Tue, 21 May 2019 15:05:37 +0000 Subject: [PATCH] Trying to fix module paths (I have no idea what I'm doing :-) The idea is to make parsekit into a separate module in another repo. --- go.mod | 2 +- parser_combinators_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/go.mod b/go.mod index f57b23c..c336e8c 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module github.com/mmakaay/go-parsekit +module git.makaay.nl/mauricem/go-parsekit go 1.12 diff --git a/parser_combinators_test.go b/parser_combinators_test.go index 4492de3..b26f6b9 100644 --- a/parser_combinators_test.go +++ b/parser_combinators_test.go @@ -3,7 +3,7 @@ package parsekit_test import ( "testing" - p "github.com/mmakaay/go-parsekit" + p "git.makaay.nl/mauricem/go-parsekit" ) var c = p.C