fix repos

This commit is contained in:
re 2022-12-13 19:19:31 +03:00
parent d046722c6f
commit 5be397991f
2 changed files with 4 additions and 4 deletions

View File

@ -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() {

View File

@ -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."},