to gogs.inhome

This commit is contained in:
Bel LaPointe
2023-04-10 11:18:10 -06:00
parent c8330aab26
commit fb30cc8436
12 changed files with 31 additions and 33 deletions

View File

@@ -1,8 +1,8 @@
package server
import (
"local/rproxy3/config"
"local/rproxy3/storage"
"gogs.inhome.blapointe.com/local/rproxy3/config"
"gogs.inhome.blapointe.com/local/rproxy3/storage"
"golang.org/x/time/rate"
)

View File

@@ -4,8 +4,8 @@ import (
"bytes"
"crypto/tls"
"io"
"local/rproxy3/config"
"local/rproxy3/storage/packable"
"gogs.inhome.blapointe.com/local/rproxy3/config"
"gogs.inhome.blapointe.com/local/rproxy3/storage/packable"
"log"
"net/http"
"net/http/httputil"

View File

@@ -1,7 +1,7 @@
package server
import (
"local/rproxy3/config"
"gogs.inhome.blapointe.com/local/rproxy3/config"
)
func (s *Server) Routes() error {

View File

@@ -8,11 +8,11 @@ import (
"errors"
"fmt"
"io"
"local/logb"
"local/oauth2/oauth2client"
"local/rproxy3/config"
"local/rproxy3/storage"
"local/rproxy3/storage/packable"
"gogs.inhome.blapointe.com/local/logb"
"gogs.inhome.blapointe.com/local/oauth2/oauth2client"
"gogs.inhome.blapointe.com/local/rproxy3/config"
"gogs.inhome.blapointe.com/local/rproxy3/storage"
"gogs.inhome.blapointe.com/local/rproxy3/storage/packable"
"log"
"net"
"net/http"

View File

@@ -3,8 +3,8 @@ package server
import (
"context"
"fmt"
"local/rproxy3/config"
"local/rproxy3/storage"
"gogs.inhome.blapointe.com/local/rproxy3/config"
"gogs.inhome.blapointe.com/local/rproxy3/storage"
"net/http"
"net/http/httptest"
"strings"