Skip to content

Commit

Permalink
Merge pull request #60 from pubgo/master
Browse files Browse the repository at this point in the history
feat: add static data deps and go mod
  • Loading branch information
yanyiwu committed Jan 10, 2020
2 parents 24ed6e0 + c4918b9 commit 275af35
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Expand Up @@ -6,3 +6,5 @@ tags
*.ut
build
example/example
.idea

5 changes: 5 additions & 0 deletions deps/cppjieba/init.go
@@ -0,0 +1,5 @@
package cppjieba

func Init() {

}
5 changes: 5 additions & 0 deletions deps/limonp/init.go
@@ -0,0 +1,5 @@
package limonp

func Init() {

}
5 changes: 5 additions & 0 deletions dict/init.go
@@ -0,0 +1,5 @@
package dict

func Init() {

}
3 changes: 3 additions & 0 deletions go.mod
@@ -0,0 +1,3 @@
module github.com/yanyiwu/gojieba

go 1.13
13 changes: 13 additions & 0 deletions init.go
@@ -0,0 +1,13 @@
package gojieba

import (
"github.com/yanyiwu/gojieba/deps/cppjieba"
"github.com/yanyiwu/gojieba/deps/limonp"
"github.com/yanyiwu/gojieba/dict"
)

func init() {
dict.Init()
limonp.Init()
cppjieba.Init()
}

0 comments on commit 275af35

Please sign in to comment.