master
Bel LaPointe 2023-04-10 10:52:47 -06:00
parent d4768ad367
commit 766e4de5fa
6 changed files with 11 additions and 7 deletions

View File

@ -3,7 +3,7 @@ package contact
import ( import (
"crypto/tls" "crypto/tls"
"fmt" "fmt"
"local/system/sysconf" "gogs.inhome.blapointe.com/local/system/sysconf"
"log" "log"
"net" "net"
"net/smtp" "net/smtp"

View File

@ -3,7 +3,7 @@ package contact
import ( import (
"fmt" "fmt"
"io/ioutil" "io/ioutil"
"local/encryptor" "gogs.inhome.blapointe.com/local/encryptor"
"os" "os"
"testing" "testing"
) )

View File

@ -1,4 +1,4 @@
module local/sandbox/contact/contact module gogs.inhome.blapointe.com/local-sandbox/contact/contact
go 1.17 go 1.17

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module gogs.inhome.blapointe.com/local-sandbox/contact
go 1.20

View File

@ -4,10 +4,11 @@ import (
"fmt" "fmt"
"io" "io"
"io/ioutil" "io/ioutil"
"local/args"
"local/sandbox/contact/contact"
"strings" "strings"
"time" "time"
"gogs.inhome.blapointe.com/local-sandbox/contact/contact"
"gogs.inhome.blapointe.com/local/args"
) )
func main() { func main() {

View File

@ -1,8 +1,8 @@
package main package main
import ( import (
"local/args" "gogs.inhome.blapointe.com/local-sandbox/contact/contact"
"local/sandbox/contact/contact" "gogs.inhome.blapointe.com/local/args"
) )
func main() { func main() {