Skip to content

Commit

Permalink
Rename : package name golang-jamo changed to jamo
Browse files Browse the repository at this point in the history
Signed-off-by: ymw0407 <yunminwo1211@gmail.com>
  • Loading branch information
ymw0407 committed Apr 6, 2024
1 parent bb444c8 commit 2c71fd0
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 22 deletions.
12 changes: 0 additions & 12 deletions examples/ex.go

This file was deleted.

2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/ymw0407/golang-jamo
module github.com/ymw0407/jamo

go 1.21.6

Expand Down
4 changes: 2 additions & 2 deletions pkg/jamo/jamo.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ limitations under the License.
package jamo

import (
"github.com/ymw0407/golang-jamo/internal/data"
"github.com/ymw0407/golang-jamo/pkg/options"
"github.com/ymw0407/jamo/internal/data"
"github.com/ymw0407/jamo/pkg/options"
)

// Decompose Hangeul words into Syllables
Expand Down
2 changes: 1 addition & 1 deletion pkg/jamo/jamo_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
"testing"

"github.com/stretchr/testify/assert"
"github.com/ymw0407/golang-jamo/pkg/jamo"
"github.com/ymw0407/jamo/pkg/jamo"
)

func TestDecomposeHangeul(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion pkg/options/jamoOption.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package options
import (
"slices"

"github.com/ymw0407/golang-jamo/internal/data"
"github.com/ymw0407/jamo/internal/data"
)

// option for decompose tense constants(된소리 자음, ㄲㄸㅃㅆㅉ), complex consonants(복합 자음, ㄳㄵㄶㄺㄻㄼㄽㄾㄿㅀㅄ), dipthongs(이중 모음, ㅐㅔㅘㅙㅚㅝㅞㅢ)
Expand Down
4 changes: 2 additions & 2 deletions pkg/options/jamoOption_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ import (
"testing"

"github.com/stretchr/testify/assert"
"github.com/ymw0407/golang-jamo/pkg/jamo"
"github.com/ymw0407/golang-jamo/pkg/options"
"github.com/ymw0407/jamo/pkg/jamo"
"github.com/ymw0407/jamo/pkg/options"
)

func TestJamoOption(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion pkg/options/qwertyOption.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package options
import (
"slices"

"github.com/ymw0407/golang-jamo/internal/data"
"github.com/ymw0407/jamo/internal/data"
)

// option for decompose Qwerty Keyboard form
Expand Down
4 changes: 2 additions & 2 deletions pkg/options/qwertyOption_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ import (
"testing"

"github.com/stretchr/testify/assert"
"github.com/ymw0407/golang-jamo/pkg/jamo"
"github.com/ymw0407/golang-jamo/pkg/options"
"github.com/ymw0407/jamo/pkg/jamo"
"github.com/ymw0407/jamo/pkg/options"
)

func TestQwertyOption(t *testing.T) {
Expand Down

0 comments on commit 2c71fd0

Please sign in to comment.