diff options
| author | adnano <[email protected]> | 2020-09-28 18:19:59 -0400 |
|---|---|---|
| committer | adnano <[email protected]> | 2020-09-28 18:19:59 -0400 |
| commit | 8d9e50d47a37d144424f9a409a35cda15cb89416 (patch) | |
| tree | 939edf3cd25295c5b1c126002fe0e496ddfd7bb6 | |
| parent | examples/client: Add optional host argument (diff) | |
| download | archived-go-gemini-8d9e50d47a37d144424f9a409a35cda15cb89416.tar.xz archived-go-gemini-8d9e50d47a37d144424f9a409a35cda15cb89416.zip | |
Update module name
| -rw-r--r-- | examples/auth/auth.go | 2 | ||||
| -rw-r--r-- | examples/cert/cert.go | 2 | ||||
| -rw-r--r-- | examples/client/client.go | 2 | ||||
| -rw-r--r-- | examples/server/server.go | 2 | ||||
| -rw-r--r-- | go.mod | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/examples/auth/auth.go b/examples/auth/auth.go index bcf7bf1..ba12096 100644 --- a/examples/auth/auth.go +++ b/examples/auth/auth.go @@ -8,7 +8,7 @@ import ( "fmt" "log" - "git.sr.ht/~adnano/go-gemini" + "git.sr.ht/~adnano/gmi" ) type user struct { diff --git a/examples/cert/cert.go b/examples/cert/cert.go index f8b872b..489a6f0 100644 --- a/examples/cert/cert.go +++ b/examples/cert/cert.go @@ -6,7 +6,7 @@ import ( "log" "time" - "git.sr.ht/~adnano/go-gemini" + "git.sr.ht/~adnano/gmi" ) func main() { diff --git a/examples/client/client.go b/examples/client/client.go index 5346c62..14d17fe 100644 --- a/examples/client/client.go +++ b/examples/client/client.go @@ -11,7 +11,7 @@ import ( "syscall" "time" - "git.sr.ht/~adnano/go-gemini" + "git.sr.ht/~adnano/gmi" "golang.org/x/crypto/ssh/terminal" ) diff --git a/examples/server/server.go b/examples/server/server.go index 09abf50..8d790ed 100644 --- a/examples/server/server.go +++ b/examples/server/server.go @@ -6,7 +6,7 @@ import ( "crypto/tls" "log" - "git.sr.ht/~adnano/go-gemini" + "git.sr.ht/~adnano/gmi" ) func main() { @@ -1,4 +1,4 @@ -module git.sr.ht/~adnano/go-gemini +module git.sr.ht/~adnano/gmi go 1.15 |