Skip to content

Commit 4d2d918

Browse files
committed
updated mod url
1 parent 23e59fe commit 4d2d918

File tree

11 files changed

+12
-12
lines changed

11 files changed

+12
-12
lines changed

example/capjoin/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323
"log"
2424
"os"
2525

26-
"github.com/goki/freetype/raster"
26+
"goki.dev/freetype/raster"
2727
"golang.org/x/image/math/fixed"
2828
)
2929

example/drawer/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626
"math"
2727
"os"
2828

29-
"github.com/goki/freetype/truetype"
29+
"goki.dev/freetype/truetype"
3030
"golang.org/x/image/font"
3131
"golang.org/x/image/math/fixed"
3232
)

example/freetype/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525
"log"
2626
"os"
2727

28-
"github.com/goki/freetype"
28+
"goki.dev/freetype"
2929
"golang.org/x/image/font"
3030
)
3131

example/gamma/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import (
2222
"log"
2323
"os"
2424

25-
"github.com/goki/freetype/raster"
25+
"goki.dev/freetype/raster"
2626
"golang.org/x/image/math/fixed"
2727
)
2828

example/genbasicfont/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import (
2828
"strings"
2929
"unicode"
3030

31-
"github.com/goki/freetype/truetype"
31+
"goki.dev/freetype/truetype"
3232
"golang.org/x/image/font"
3333
"golang.org/x/image/math/fixed"
3434
)

example/raster/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323
"log"
2424
"os"
2525

26-
"github.com/goki/freetype/raster"
26+
"goki.dev/freetype/raster"
2727
"golang.org/x/image/math/fixed"
2828
)
2929

example/round/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import (
2929
"math"
3030
"os"
3131

32-
"github.com/goki/freetype/raster"
32+
"goki.dev/freetype/raster"
3333
"golang.org/x/image/math/fixed"
3434
)
3535

example/truetype/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import (
1919
"io/ioutil"
2020
"log"
2121

22-
"github.com/goki/freetype/truetype"
22+
"goki.dev/freetype/truetype"
2323
"golang.org/x/image/font"
2424
"golang.org/x/image/math/fixed"
2525
)

freetype.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ import (
1313
"image"
1414
"image/draw"
1515

16-
"github.com/goki/freetype/raster"
17-
"github.com/goki/freetype/truetype"
16+
"goki.dev/freetype/raster"
17+
"goki.dev/freetype/truetype"
1818
"golang.org/x/image/font"
1919
"golang.org/x/image/math/fixed"
2020
)

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/goki/freetype
1+
module goki.dev/freetype
22

33
go 1.18
44

0 commit comments

Comments
 (0)