From 766e4de5fa656f85bbbf6561b19858f0ee0af274 Mon Sep 17 00:00:00 2001 From: Bel LaPointe Date: Mon, 10 Apr 2023 10:52:47 -0600 Subject: [PATCH] partial --- .email.go | 2 +- .email_test.go | 2 +- contact/go.mod | 2 +- go.mod | 3 +++ recv.go | 5 +++-- send.go | 4 ++-- 6 files changed, 11 insertions(+), 7 deletions(-) create mode 100644 go.mod diff --git a/.email.go b/.email.go index f9fd1b9..4fc7c6c 100755 --- a/.email.go +++ b/.email.go @@ -3,7 +3,7 @@ package contact import ( "crypto/tls" "fmt" - "local/system/sysconf" + "gogs.inhome.blapointe.com/local/system/sysconf" "log" "net" "net/smtp" diff --git a/.email_test.go b/.email_test.go index 3b980c2..4355e62 100755 --- a/.email_test.go +++ b/.email_test.go @@ -3,7 +3,7 @@ package contact import ( "fmt" "io/ioutil" - "local/encryptor" + "gogs.inhome.blapointe.com/local/encryptor" "os" "testing" ) diff --git a/contact/go.mod b/contact/go.mod index 257e69f..12c5908 100644 --- a/contact/go.mod +++ b/contact/go.mod @@ -1,4 +1,4 @@ -module local/sandbox/contact/contact +module gogs.inhome.blapointe.com/local-sandbox/contact/contact go 1.17 diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..1e506b1 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module gogs.inhome.blapointe.com/local-sandbox/contact + +go 1.20 diff --git a/recv.go b/recv.go index d43df05..1ff3340 100755 --- a/recv.go +++ b/recv.go @@ -4,10 +4,11 @@ import ( "fmt" "io" "io/ioutil" - "local/args" - "local/sandbox/contact/contact" "strings" "time" + + "gogs.inhome.blapointe.com/local-sandbox/contact/contact" + "gogs.inhome.blapointe.com/local/args" ) func main() { diff --git a/send.go b/send.go index 427dcb1..147f600 100755 --- a/send.go +++ b/send.go @@ -1,8 +1,8 @@ package main import ( - "local/args" - "local/sandbox/contact/contact" + "gogs.inhome.blapointe.com/local-sandbox/contact/contact" + "gogs.inhome.blapointe.com/local/args" ) func main() {