From 4ab27afa07c69a311446dbbc6a60f7d32231a7b8 Mon Sep 17 00:00:00 2001 From: Alexander NeonXP Kiryukhin Date: Sun, 28 Apr 2024 02:33:13 +0300 Subject: переезд неймспейса MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- example/math_expression/main.go | 2 +- example/math_expression/rpn.go | 2 +- example/math_expression/stack.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'example/math_expression') diff --git a/example/math_expression/main.go b/example/math_expression/main.go index 805028e..5cabaa6 100644 --- a/example/math_expression/main.go +++ b/example/math_expression/main.go @@ -3,7 +3,7 @@ package main import ( "fmt" - "github.com/neonxp/unilex" + "go.neonxp.ru/unilex" ) const ( diff --git a/example/math_expression/rpn.go b/example/math_expression/rpn.go index a4cacc0..65d9bf8 100644 --- a/example/math_expression/rpn.go +++ b/example/math_expression/rpn.go @@ -7,7 +7,7 @@ import ( "log" "strconv" - "github.com/neonxp/unilex" + "go.neonxp.ru/unilex" ) var opPriority = map[string]int{ diff --git a/example/math_expression/stack.go b/example/math_expression/stack.go index 5244f7c..d690f4e 100644 --- a/example/math_expression/stack.go +++ b/example/math_expression/stack.go @@ -2,7 +2,7 @@ package main // Simple lexem stack implementation. -import "github.com/neonxp/unilex" +import "go.neonxp.ru/unilex" type lexemStack []unilex.Lexem -- cgit v1.2.3