Browse Source

auto update script executed

Toby Chui 1 year ago
parent
commit
58b1a9bb78

+ 2 - 2
api.go

@@ -4,8 +4,8 @@ import (
 	"encoding/json"
 	"net/http"
 
-	"imuslab.com/Zoarxy/mod/auth"
-	"imuslab.com/Zoarxy/mod/utils"
+	"imuslab.com/Zoraxy/mod/auth"
+	"imuslab.com/Zoraxy/mod/utils"
 )
 
 /*

+ 1 - 1
blacklist.go

@@ -4,7 +4,7 @@ import (
 	"encoding/json"
 	"net/http"
 
-	"imuslab.com/Zoarxy/mod/utils"
+	"imuslab.com/Zoraxy/mod/utils"
 )
 
 /*

+ 1 - 1
cert.go

@@ -9,7 +9,7 @@ import (
 	"os"
 	"path/filepath"
 
-	"imuslab.com/Zoarxy/mod/utils"
+	"imuslab.com/Zoraxy/mod/utils"
 )
 
 // Check if the default certificates is correctly setup

+ 1 - 1
config.go

@@ -8,7 +8,7 @@ import (
 	"path/filepath"
 	"strings"
 
-	"imuslab.com/Zoarxy/mod/utils"
+	"imuslab.com/Zoraxy/mod/utils"
 )
 
 type Record struct {

+ 1 - 1
go.mod

@@ -1,4 +1,4 @@
-module imuslab.com/Zoarxy
+module imuslab.com/Zoraxy
 
 go 1.16
 

+ 8 - 8
main.go

@@ -10,14 +10,14 @@ import (
 	"syscall"
 	"time"
 
-	"imuslab.com/Zoarxy/mod/aroz"
-	"imuslab.com/Zoarxy/mod/auth"
-	"imuslab.com/Zoarxy/mod/database"
-	"imuslab.com/Zoarxy/mod/dynamicproxy/redirection"
-	"imuslab.com/Zoarxy/mod/geodb"
-	"imuslab.com/Zoarxy/mod/statistic"
-	"imuslab.com/Zoarxy/mod/tlscert"
-	"imuslab.com/Zoarxy/mod/upnp"
+	"imuslab.com/Zoraxy/mod/aroz"
+	"imuslab.com/Zoraxy/mod/auth"
+	"imuslab.com/Zoraxy/mod/database"
+	"imuslab.com/Zoraxy/mod/dynamicproxy/redirection"
+	"imuslab.com/Zoraxy/mod/geodb"
+	"imuslab.com/Zoraxy/mod/statistic"
+	"imuslab.com/Zoraxy/mod/tlscert"
+	"imuslab.com/Zoraxy/mod/upnp"
 )
 
 //General flags

+ 2 - 2
mod/auth/auth.go

@@ -17,8 +17,8 @@ import (
 	"log"
 
 	"github.com/gorilla/sessions"
-	db "imuslab.com/Zoarxy/mod/database"
-	"imuslab.com/Zoarxy/mod/utils"
+	db "imuslab.com/Zoraxy/mod/database"
+	"imuslab.com/Zoraxy/mod/utils"
 )
 
 type AuthAgent struct {

+ 1 - 1
mod/dynamicproxy/Server.go

@@ -5,7 +5,7 @@ import (
 	"os"
 	"strings"
 
-	"imuslab.com/Zoarxy/mod/geodb"
+	"imuslab.com/Zoraxy/mod/geodb"
 )
 
 /*

+ 6 - 6
mod/dynamicproxy/dynamicproxy.go

@@ -12,12 +12,12 @@ import (
 	"sync"
 	"time"
 
-	"imuslab.com/Zoarxy/mod/dynamicproxy/dpcore"
-	"imuslab.com/Zoarxy/mod/dynamicproxy/redirection"
-	"imuslab.com/Zoarxy/mod/geodb"
-	"imuslab.com/Zoarxy/mod/reverseproxy"
-	"imuslab.com/Zoarxy/mod/statistic"
-	"imuslab.com/Zoarxy/mod/tlscert"
+	"imuslab.com/Zoraxy/mod/dynamicproxy/dpcore"
+	"imuslab.com/Zoraxy/mod/dynamicproxy/redirection"
+	"imuslab.com/Zoraxy/mod/geodb"
+	"imuslab.com/Zoraxy/mod/reverseproxy"
+	"imuslab.com/Zoraxy/mod/statistic"
+	"imuslab.com/Zoraxy/mod/tlscert"
 )
 
 /*

+ 3 - 3
mod/dynamicproxy/proxyRequestHandler.go

@@ -9,9 +9,9 @@ import (
 	"net/url"
 	"strings"
 
-	"imuslab.com/Zoarxy/mod/geodb"
-	"imuslab.com/Zoarxy/mod/statistic"
-	"imuslab.com/Zoarxy/mod/websocketproxy"
+	"imuslab.com/Zoraxy/mod/geodb"
+	"imuslab.com/Zoraxy/mod/statistic"
+	"imuslab.com/Zoraxy/mod/websocketproxy"
 )
 
 func (router *Router) getTargetProxyEndpointFromRequestURI(requestURI string) *ProxyEndpoint {

+ 1 - 1
mod/dynamicproxy/redirection/redirection.go

@@ -9,7 +9,7 @@ import (
 	"strings"
 	"sync"
 
-	"imuslab.com/Zoarxy/mod/utils"
+	"imuslab.com/Zoraxy/mod/utils"
 )
 
 type RuleTable struct {

+ 1 - 1
mod/dynamicproxy/subdomain.go

@@ -4,7 +4,7 @@ import (
 	"log"
 	"net/url"
 
-	"imuslab.com/Zoarxy/mod/reverseproxy"
+	"imuslab.com/Zoraxy/mod/reverseproxy"
 )
 
 /*

+ 1 - 1
mod/geodb/geodb.go

@@ -6,7 +6,7 @@ import (
 	"strings"
 
 	"github.com/oschwald/geoip2-golang"
-	"imuslab.com/Zoarxy/mod/database"
+	"imuslab.com/Zoraxy/mod/database"
 )
 
 type Store struct {

+ 1 - 1
mod/statistic/handler.go

@@ -4,7 +4,7 @@ import (
 	"encoding/json"
 	"net/http"
 
-	"imuslab.com/Zoarxy/mod/utils"
+	"imuslab.com/Zoraxy/mod/utils"
 )
 
 /*

+ 1 - 1
mod/statistic/statistic.go

@@ -5,7 +5,7 @@ import (
 	"sync"
 	"time"
 
-	"imuslab.com/Zoarxy/mod/database"
+	"imuslab.com/Zoraxy/mod/database"
 )
 
 /*

+ 1 - 1
mod/tlscert/tlscert.go

@@ -11,7 +11,7 @@ import (
 	"path/filepath"
 	"strings"
 
-	"imuslab.com/Zoarxy/mod/utils"
+	"imuslab.com/Zoraxy/mod/utils"
 )
 
 type Manager struct {

+ 1 - 1
redirect.go

@@ -5,7 +5,7 @@ import (
 	"net/http"
 	"strconv"
 
-	"imuslab.com/Zoarxy/mod/utils"
+	"imuslab.com/Zoraxy/mod/utils"
 )
 
 /*

+ 2 - 2
reverseproxy.go

@@ -10,8 +10,8 @@ import (
 	"strings"
 	"time"
 
-	"imuslab.com/Zoarxy/mod/dynamicproxy"
-	"imuslab.com/Zoarxy/mod/utils"
+	"imuslab.com/Zoraxy/mod/dynamicproxy"
+	"imuslab.com/Zoraxy/mod/utils"
 )
 
 var (

+ 2 - 2
upnp.go

@@ -9,8 +9,8 @@ import (
 	"strconv"
 	"time"
 
-	"imuslab.com/Zoarxy/mod/upnp"
-	"imuslab.com/Zoarxy/mod/utils"
+	"imuslab.com/Zoraxy/mod/upnp"
+	"imuslab.com/Zoraxy/mod/utils"
 )
 
 var upnpEnabled = false