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"
"fmt"
"io/ioutil"
"local/args"
"local/oauth2"
"local/storage"
"gogs.inhome.blapointe.com/local/args"
"gogs.inhome.blapointe.com/local/oauth2"
"gogs.inhome.blapointe.com/local/storage"
"log"
"net/http"
"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
require (
github.com/google/uuid v1.3.0
gopkg.in/yaml.v2 v2.4.0
local/args v0.0.0-00010101000000-000000000000
local/oauth2 v0.0.0-00010101000000-000000000000
local/sandbox/contact/contact v0.0.0-00010101000000-000000000000
local/storage v0.0.0-00010101000000-000000000000
gogs.inhome.blapointe.com/local/args latest
gogs.inhome.blapointe.com/local/oauth2 latest
gogs.inhome.blapointe.com/local-sandbox/contact latest
gogs.inhome.blapointe.com/local/storage latest
)
require (
@ -56,17 +56,6 @@ require (
google.golang.org/api v0.0.0-20181120235003-faade3cbb06a // indirect
google.golang.org/appengine v1.3.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
import (
"local/sandbox/contact/contact"
"log"
"regexp"
"gogs.inhome.blapointe.com/local-sandbox/contact/contact"
)
func main() {

View File

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

View File

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