from gogs to gitea

This commit is contained in:
bel
2024-03-10 09:54:05 -06:00
parent 9941706b73
commit fb6d7af6d3
12 changed files with 32 additions and 31 deletions

View File

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

View File

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

View File

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

View File

@@ -17,11 +17,11 @@ import (
"strings"
"time"
"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"
"gitea.inhome.blapointe.com/local/logb"
"gitea.inhome.blapointe.com/local/oauth2/oauth2client"
"gitea.inhome.blapointe.com/local/rproxy3/config"
"gitea.inhome.blapointe.com/local/rproxy3/storage"
"gitea.inhome.blapointe.com/local/rproxy3/storage/packable"
"github.com/google/uuid"
"golang.org/x/time/rate"

View File

@@ -3,13 +3,14 @@ package server
import (
"context"
"fmt"
"gogs.inhome.blapointe.com/local/rproxy3/config"
"gogs.inhome.blapointe.com/local/rproxy3/storage"
"net/http"
"net/http/httptest"
"strings"
"testing"
"gitea.inhome.blapointe.com/local/rproxy3/config"
"gitea.inhome.blapointe.com/local/rproxy3/storage"
"golang.org/x/time/rate"
)