From 5be397991f14677df7f21367ab347e2baa89bf91 Mon Sep 17 00:00:00 2001 From: re Date: Tue, 13 Dec 2022 19:19:31 +0300 Subject: [PATCH] fix repos --- README.md | 4 ++-- example_test.go | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f4fdcde..abdcd85 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ import ( "log" "os" - "github.com/yeka/zip" + "git.internal/re/zip" ) func main() { @@ -60,7 +60,7 @@ import ( "io/ioutil" "log" - "github.com/yeka/zip" + "git.internal/re/zip" ) func main() { diff --git a/example_test.go b/example_test.go index dce27ee..a554ea9 100644 --- a/example_test.go +++ b/example_test.go @@ -11,7 +11,7 @@ import ( "log" "os" - "github.com/yeka/zip" + "git.internal/re/zip" ) func ExampleWriter() { @@ -22,7 +22,7 @@ func ExampleWriter() { w := zip.NewWriter(buf) // Add some files to the archive. - var files = []struct { + files := []struct { Name, Body string }{ {"readme.txt", "This archive contains some text files."},