BUGFIX: maybe

This commit is contained in:
NorthCityChen 2022-04-02 13:20:32 +08:00
parent 856132dd71
commit 41fd17517f
5 changed files with 11 additions and 9 deletions

5
app.go
View File

@ -1,6 +1,6 @@
/* /*
* @Author: NorthCity1984 * @Author: NorthCity1984
* @LastEditTime: 2022-04-02 12:42:40 * @LastEditTime: 2022-04-02 13:19:42
* @Description: * @Description:
* @Website: https://grimoire.cn * @Website: https://grimoire.cn
* Copyright (c) NorthCity1984 All rights reserved. * Copyright (c) NorthCity1984 All rights reserved.
@ -9,7 +9,8 @@ package main
import ( import (
"fmt" "fmt"
"stl-go/dequeue"
"gitee.com/NorthCityChen/stl-go/dequeue"
) )
func main() { func main() {

2
go.mod
View File

@ -1,3 +1,3 @@
module stl-go module gitee.com/NorthCityChen/stl-go
go 1.18 go 1.18

View File

@ -1,6 +1,6 @@
/* /*
* @Author: NorthCity1984 * @Author: NorthCity1984
* @LastEditTime: 2022-04-01 20:54:04 * @LastEditTime: 2022-04-02 13:19:50
* @Description: * @Description:
* @Website: https://grimoire.cn * @Website: https://grimoire.cn
* Copyright (c) NorthCity1984 All rights reserved. * Copyright (c) NorthCity1984 All rights reserved.
@ -8,8 +8,9 @@
package math_test package math_test
import ( import (
"stl-go/math"
"testing" "testing"
"gitee.com/NorthCityChen/stl-go/math"
) )
func TestMin(t *testing.T) { func TestMin(t *testing.T) {

View File

@ -1,13 +1,13 @@
/* /*
* @Author: NorthCity1984 * @Author: NorthCity1984
* @LastEditTime: 2022-04-02 12:40:51 * @LastEditTime: 2022-04-02 13:19:37
* @Description: * @Description:
* @Website: https://grimoire.cn * @Website: https://grimoire.cn
* Copyright (c) NorthCity1984 All rights reserved. * Copyright (c) NorthCity1984 All rights reserved.
*/ */
package queue package queue
import "stl-go/dequeue" import "gitee.com/NorthCityChen/stl-go/dequeue"
type Number interface { type Number interface {
int | int64 | float32 | float64 int | int64 | float32 | float64

View File

@ -1,13 +1,13 @@
/* /*
* @Author: NorthCity1984 * @Author: NorthCity1984
* @LastEditTime: 2022-04-02 12:39:53 * @LastEditTime: 2022-04-02 13:19:33
* @Description: * @Description:
* @Website: https://grimoire.cn * @Website: https://grimoire.cn
* Copyright (c) NorthCity1984 All rights reserved. * Copyright (c) NorthCity1984 All rights reserved.
*/ */
package stack package stack
import "stl-go/dequeue" import "gitee.com/NorthCityChen/stl-go/dequeue"
type Number interface { type Number interface {
int | int64 | float32 | float64 int | int64 | float32 | float64