From e185fe208ccb05bc8e6231697fe40515aed3beaa Mon Sep 17 00:00:00 2001 From: eyedeekay Date: Mon, 6 Oct 2025 13:23:55 -0400 Subject: [PATCH] fmt --- example_test.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/example_test.go b/example_test.go index 231ed7dd2..0019b3181 100644 --- a/example_test.go +++ b/example_test.go @@ -9,7 +9,7 @@ import ( // Example demonstrates basic usage of the sam3 library for I2P connectivity. // This example shows how to establish a SAM connection, generate keys, and create sessions. -// +// // Requirements: This example requires a running I2P router with SAM bridge enabled. func Example() { // Connect to the local I2P SAM bridge @@ -40,7 +40,7 @@ func Example() { } // ExampleNewSAM demonstrates how to establish a connection to the I2P SAM bridge. -// +// // Requirements: This example requires a running I2P router with SAM bridge enabled. func ExampleNewSAM() { // Connect to the default I2P SAM bridge address @@ -55,7 +55,7 @@ func ExampleNewSAM() { } // ExampleSAM_NewStreamSession demonstrates creating a stream session for reliable connections. -// +// // Requirements: This example requires a running I2P router with SAM bridge enabled. func ExampleSAM_NewStreamSession() { sam, err := sam3.NewSAM("127.0.0.1:7656") @@ -83,7 +83,7 @@ func ExampleSAM_NewStreamSession() { } // ExampleSAM_NewPrimarySession demonstrates creating a primary session for managing sub-sessions. -// +// // Requirements: This example requires a running I2P router with SAM bridge enabled. func ExampleSAM_NewPrimarySession() { sam, err := sam3.NewSAM("127.0.0.1:7656") @@ -112,7 +112,7 @@ func ExampleSAM_NewPrimarySession() { } // ExampleSAM_NewDatagramSession demonstrates creating a datagram session for UDP-like messaging. -// +// // Requirements: This example requires a running I2P router with SAM bridge enabled. func ExampleSAM_NewDatagramSession() { sam, err := sam3.NewSAM("127.0.0.1:7656")