]> Cypherpunks repositories - gorecfile.git/commitdiff
Change namespace because of domain expiration v2.0.0
authorSergey Matveev <stargrave@stargrave.org>
Tue, 23 Jul 2024 06:47:48 +0000 (09:47 +0300)
committerSergey Matveev <stargrave@stargrave.org>
Tue, 23 Jul 2024 06:47:48 +0000 (09:47 +0300)
README
cmd/gorecsel/main.go
go.mod
slog/handler.go
slog/handler_test.go

diff --git a/README b/README
index 7d38e9467e33b97d1a80beabdc7b3f1ea9212419..e8709476868df3c0fd44f1a25331cc8dec420516 100644 (file)
--- a/README
+++ b/README
@@ -11,7 +11,7 @@ Limitations:
 * leading spaces in the first line of the value are ignored
 * trailing backslash at the end of lines is followed by space
 
-Also there is go.cypherpunks.ru/recfile/slog.NewRecfileHandler log/slog
+Also there is go.cypherpunks.su/recfile/v2/slog.NewRecfileHandler log/slog
 handler to write your logs in recfile format directly.
 
 It is free software: see the file COPYING for copying conditions.
index 13844c61efeb9da203ffa6d67b93beae1052ef4b..22662921f0f3a8a626014768c88e7dc1a1ea7094 100644 (file)
@@ -5,7 +5,7 @@ import (
        "io"
        "os"
 
-       "go.cypherpunks.ru/recfile"
+       "go.cypherpunks.su/recfile/v2"
 )
 
 func main() {
diff --git a/go.mod b/go.mod
index 6f8d7f445073113831283291d8373e07522ecd11..848fe24102df161b27fbad729222df2a8281f66b 100644 (file)
--- a/go.mod
+++ b/go.mod
@@ -1,3 +1,3 @@
-module go.cypherpunks.ru/recfile
+module go.cypherpunks.su/recfile/v2
 
 go 1.21
index 43f1a13d5aa54aa8af47aa7afb600334cb369173..5f6a98c6196790fb67523a49732fac1569ed56a8 100644 (file)
@@ -23,7 +23,7 @@ import (
        "sync"
        "time"
 
-       "go.cypherpunks.ru/recfile"
+       "go.cypherpunks.su/recfile/v2"
 )
 
 type RecfileHandler struct {
index 108e8f2ade5d7e6e1ac5a5bb457f01118c8f1887..514df1857d8b453f3a8cad33be07dee51d5fbf66 100644 (file)
@@ -22,7 +22,7 @@ import (
        "testing"
        "time"
 
-       "go.cypherpunks.ru/recfile"
+       "go.cypherpunks.su/recfile/v2"
 )
 
 func TestBasic(t *testing.T) {