rename rot package

This commit is contained in:
eyedeekay
2025-10-02 12:09:45 -04:00
parent ae2bbade67
commit e90d246a8b
9 changed files with 10 additions and 8 deletions

View File

@@ -1,7 +1,7 @@
// Package sam provides a pure-Go implementation of SAMv3.3 (Simple Anonymous Messaging) for I2P networks. // Package sam provides a pure-Go implementation of SAMv3.3 (Simple Anonymous Messaging) for I2P networks.
// This is the root package wrapper that provides sam3-compatible API surface while delegating // This is the root package wrapper that provides sam3-compatible API surface while delegating
// implementation details to specialized sub-packages. // implementation details to specialized sub-packages.
package sam package sam3
import ( import (
"os" "os"

View File

@@ -1,4 +1,4 @@
package sam package sam3
import ( import (
"os" "os"

2
go.mod
View File

@@ -20,3 +20,5 @@ require (
golang.org/x/sys v0.34.0 // indirect golang.org/x/sys v0.34.0 // indirect
golang.org/x/text v0.27.0 // indirect golang.org/x/text v0.27.0 // indirect
) )
replace github.com/go-i2p/go-sam-go => .

View File

@@ -1,7 +1,7 @@
// Package sam provides a pure-Go implementation of SAMv3.3 for I2P networks. // Package sam provides a pure-Go implementation of SAMv3.3 for I2P networks.
// This file implements the main wrapper functions that delegate to sub-package implementations // This file implements the main wrapper functions that delegate to sub-package implementations
// while providing the sam3-compatible API surface at the root package level. // while providing the sam3-compatible API surface at the root package level.
package sam package sam3
import ( import (
"errors" "errors"

View File

@@ -1,4 +1,4 @@
package sam package sam3
import ( import (
"errors" "errors"

View File

@@ -1,4 +1,4 @@
package sam package sam3
import ( import (
"github.com/go-i2p/go-sam-go/primary" "github.com/go-i2p/go-sam-go/primary"

View File

@@ -1,4 +1,4 @@
package sam package sam3
import ( import (
"fmt" "fmt"

View File

@@ -1,7 +1,7 @@
// Package sam provides type aliases and wrappers for exposing sub-package types at the root level. // Package sam provides type aliases and wrappers for exposing sub-package types at the root level.
// This file implements the sam3-compatible API surface by creating type aliases that delegate // This file implements the sam3-compatible API surface by creating type aliases that delegate
// to the appropriate sub-package implementations while maintaining a clean public interface. // to the appropriate sub-package implementations while maintaining a clean public interface.
package sam package sam3
import ( import (
"github.com/go-i2p/go-sam-go/common" "github.com/go-i2p/go-sam-go/common"

View File

@@ -1,4 +1,4 @@
package sam package sam3
import ( import (
"reflect" "reflect"