Skip to content

Commit

Permalink
update examples
Browse files Browse the repository at this point in the history
  • Loading branch information
eyedeekay committed Nov 14, 2024
1 parent 00aafc2 commit 0d05b3c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
8 changes: 4 additions & 4 deletions EXAMPLE.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"log"
"net/http"

"github.com/eyedeekay/onramp"
"github.com/go-i2p/onramp"
)

func main() {
Expand Down Expand Up @@ -44,7 +44,7 @@ import (
"log"
"net/http"

"github.com/eyedeekay/onramp"
"github.com/go-i2p/onramp"
)

func main() {
Expand Down Expand Up @@ -135,7 +135,7 @@ import (
"log"
"net/http"

"github.com/eyedeekay/onramp"
"github.com/go-i2p/onramp"
)

func main() {
Expand Down Expand Up @@ -167,7 +167,7 @@ import (
"log"
"net/http"

"github.com/eyedeekay/onramp"
"github.com/go-i2p/onramp"
)

func main() {
Expand Down
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
onramp
======

[![Go Report Card](https://goreportcard.com/badge/github.com/go-i2p/onramp)](https://goreportcard.com/report/github.com/go-i2p/onramp)

High-level, easy-to-use listeners and clients for I2P and onion URL's from Go.
Provides only the most widely-used functions in a basic way. It expects nothing
from the users, an otherwise empty instance of the structs will listen and dial
Expand All @@ -12,9 +14,9 @@ This means that hidden services will maintain their identities, and that clients
will always have the same return addresses. If you don't want this behavior,
make sure to delete the "keystore" when your app closes or when your application
needs to cycle keys by calling the `Garlic.DeleteKeys()` or `Onion.DeleteKeys()`
function. For more information, check out the [godoc](http://pkg.go.dev/github.com/eyedeekay/onramp).
function. For more information, check out the [godoc](http://pkg.go.dev/github.com/go-i2p/onramp).

- **[Source Code](https://github.com/eyedeekay/onramp)**
- **[Source Code](https://github.com/go-i2p/onramp)**

STATUS: This project is maintained. I will respond to issues, pull requests, and feature requests within a few days.

Expand All @@ -38,7 +40,7 @@ package main
import (
"log"

"github.com/eyedeekay/onramp"
"github.com/go-i2p/onramp"
)

func main() {
Expand All @@ -64,7 +66,7 @@ package main
import (
"log"

"github.com/eyedeekay/onramp"
"github.com/go-i2p/onramp"
)

func main() {
Expand Down

0 comments on commit 0d05b3c

Please sign in to comment.