diff --git a/app.go b/app.go index ac084b9..5e96ab5 100644 --- a/app.go +++ b/app.go @@ -1,6 +1,6 @@ /* * @Author: NorthCity1984 - * @LastEditTime: 2022-04-02 12:42:40 + * @LastEditTime: 2022-04-02 13:19:42 * @Description: * @Website: https://grimoire.cn * Copyright (c) NorthCity1984 All rights reserved. @@ -9,7 +9,8 @@ package main import ( "fmt" - "stl-go/dequeue" + + "gitee.com/NorthCityChen/stl-go/dequeue" ) func main() { diff --git a/go.mod b/go.mod index 7354a10..71366e2 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module stl-go +module gitee.com/NorthCityChen/stl-go go 1.18 diff --git a/math/math_test.go b/math/math_test.go index 582c36a..c3b3b50 100644 --- a/math/math_test.go +++ b/math/math_test.go @@ -1,6 +1,6 @@ /* * @Author: NorthCity1984 - * @LastEditTime: 2022-04-01 20:54:04 + * @LastEditTime: 2022-04-02 13:19:50 * @Description: * @Website: https://grimoire.cn * Copyright (c) NorthCity1984 All rights reserved. @@ -8,8 +8,9 @@ package math_test import ( - "stl-go/math" "testing" + + "gitee.com/NorthCityChen/stl-go/math" ) func TestMin(t *testing.T) { diff --git a/queue/queue.go b/queue/queue.go index d524233..43c73a6 100644 --- a/queue/queue.go +++ b/queue/queue.go @@ -1,13 +1,13 @@ /* * @Author: NorthCity1984 - * @LastEditTime: 2022-04-02 12:40:51 + * @LastEditTime: 2022-04-02 13:19:37 * @Description: * @Website: https://grimoire.cn * Copyright (c) NorthCity1984 All rights reserved. */ package queue -import "stl-go/dequeue" +import "gitee.com/NorthCityChen/stl-go/dequeue" type Number interface { int | int64 | float32 | float64 diff --git a/stack/stack.go b/stack/stack.go index 7c766c5..1df8a34 100644 --- a/stack/stack.go +++ b/stack/stack.go @@ -1,13 +1,13 @@ /* * @Author: NorthCity1984 - * @LastEditTime: 2022-04-02 12:39:53 + * @LastEditTime: 2022-04-02 13:19:33 * @Description: * @Website: https://grimoire.cn * Copyright (c) NorthCity1984 All rights reserved. */ package stack -import "stl-go/dequeue" +import "gitee.com/NorthCityChen/stl-go/dequeue" type Number interface { int | int64 | float32 | float64