Skip to content

Commit

Permalink
BUG 类库引入
Browse files Browse the repository at this point in the history
kingstar-go/commons 改为 github.com/learninto
  • Loading branch information
learninto committed Aug 24, 2020
1 parent 80b76bb commit 9dcf9b3
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
5 changes: 3 additions & 2 deletions cronexpr/cronexpr.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
*
* Project: github.com/kingstar-go/commons/cronexpr
* Project: github.com/github.com/learninto/gopkg/cronexpr
* File: cronexpr.go
* Version: 1.0
* License: pick the one which suits you :
Expand All @@ -14,11 +14,12 @@ package cronexpr

import (
"errors"
"kingstar-go/commons/timelib"
"regexp"
"strconv"
"strings"
"time"

"github.com/learninto/gopkg/timelib"
)

/******************************************************************************/
Expand Down
3 changes: 2 additions & 1 deletion cronexpr/cronexpr_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ package cronexpr

import (
"errors"
"kingstar-go/commons/timelib"
"reflect"
"testing"
"time"

"github.com/learninto/gopkg/timelib"
)

// TestExpression_Next TODO 待完善
Expand Down
2 changes: 0 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
module github.com/learninto/gopkg

go 1.14

require ()
3 changes: 2 additions & 1 deletion structlib/structlib.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
package structlib

import (
"kingstar-go/commons/namedlib"
"reflect"

"github.com/learninto/gopkg/namedlib"
)

// https://www.sozhidao.com/articles/260
Expand Down

0 comments on commit 9dcf9b3

Please sign in to comment.