master
Bel LaPointe 2023-04-10 10:58:36 -06:00
parent dc0b0a64e2
commit 9adf5e57cf
5 changed files with 13 additions and 23 deletions

View File

@ -4,9 +4,9 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
"io/ioutil" "io/ioutil"
"local/args" "gogs.inhome.blapointe.com/local/args"
"local/oauth2" "gogs.inhome.blapointe.com/local/oauth2"
"local/storage" "gogs.inhome.blapointe.com/local/storage"
"log" "log"
"net/http" "net/http"
"strings" "strings"

23
go.mod
View File

@ -1,14 +1,14 @@
module local/email-xactions-to-todo module gogs.inhome.blapointe.com/local/email-xactions-to-todo
go 1.17 go 1.17
require ( require (
github.com/google/uuid v1.3.0 github.com/google/uuid v1.3.0
gopkg.in/yaml.v2 v2.4.0 gopkg.in/yaml.v2 v2.4.0
local/args v0.0.0-00010101000000-000000000000 gogs.inhome.blapointe.com/local/args latest
local/oauth2 v0.0.0-00010101000000-000000000000 gogs.inhome.blapointe.com/local/oauth2 latest
local/sandbox/contact/contact v0.0.0-00010101000000-000000000000 gogs.inhome.blapointe.com/local-sandbox/contact latest
local/storage v0.0.0-00010101000000-000000000000 gogs.inhome.blapointe.com/local/storage latest
) )
require ( require (
@ -56,17 +56,6 @@ require (
google.golang.org/api v0.0.0-20181120235003-faade3cbb06a // indirect google.golang.org/api v0.0.0-20181120235003-faade3cbb06a // indirect
google.golang.org/appengine v1.3.0 // indirect google.golang.org/appengine v1.3.0 // indirect
gopkg.in/ini.v1 v1.42.0 // indirect gopkg.in/ini.v1 v1.42.0 // indirect
local/logb v0.0.0-00010101000000-000000000000 // indirect gogs.inhome.blapointe.com/local/logb v0.0.0-00010101000000-000000000000 // indirect
) )
replace local/args => ../args
replace local/oauth2 => ../oauth2
replace local/sandbox/contact/contact => ../sandbox/contact/contact
replace local/storage => ../storage
replace local/router => ../router
replace local/logb => ../logb

View File

@ -1,9 +1,10 @@
package main package main
import ( import (
"local/sandbox/contact/contact"
"log" "log"
"regexp" "regexp"
"gogs.inhome.blapointe.com/local-sandbox/contact/contact"
) )
func main() { func main() {

View File

@ -5,7 +5,7 @@ import (
"errors" "errors"
"fmt" "fmt"
"io/ioutil" "io/ioutil"
"local/oauth2" "gogs.inhome.blapointe.com/local/oauth2"
"net/http" "net/http"
"net/url" "net/url"
"os" "os"

View File

@ -3,7 +3,7 @@ package main
import ( import (
"bytes" "bytes"
"io/ioutil" "io/ioutil"
"local/storage" "gogs.inhome.blapointe.com/local/storage"
"os" "os"
"path" "path"
"testing" "testing"