mirror of
https://github.com/go-i2p/go-sam-go.git
synced 2025-12-01 09:54:58 -05:00
rename rot package
This commit is contained in:
@@ -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"
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
package sam
|
package sam3
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"os"
|
"os"
|
||||||
|
|||||||
2
go.mod
2
go.mod
@@ -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 => .
|
||||||
|
|||||||
2
sam3.go
2
sam3.go
@@ -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"
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
package sam
|
package sam3
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"errors"
|
"errors"
|
||||||
|
|||||||
@@ -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"
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
package sam
|
package sam3
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|||||||
2
types.go
2
types.go
@@ -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"
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
package sam
|
package sam3
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"reflect"
|
"reflect"
|
||||||
|
|||||||
Reference in New Issue
Block a user