update module address

This commit is contained in:
Iris Lightshard 2024-11-28 10:31:07 -07:00
parent 5d4e2d7199
commit 6b8fc7885f
Signed by: Iris Lightshard
GPG key ID: 688407174966CAF3
5 changed files with 13 additions and 13 deletions

View file

@ -1,7 +1,7 @@
package auth package auth
import ( import (
"hacklab.nilfm.cc/quartzgun/cookie" "forge.lightcrystal.systems/nilix/quartzgun/cookie"
"net/http" "net/http"
"time" "time"
) )

2
go.mod
View file

@ -1,4 +1,4 @@
module hacklab.nilfm.cc/quartzgun module forge.lightcrystal.systems/nilix/quartzgun
go 1.17 go 1.17

View file

@ -4,9 +4,9 @@ import (
"encoding/base64" "encoding/base64"
"errors" "errors"
"fmt" "fmt"
"forge.lightcrystal.systems/nilix/quartzgun/auth"
"forge.lightcrystal.systems/nilix/quartzgun/cookie"
"golang.org/x/crypto/bcrypt" "golang.org/x/crypto/bcrypt"
"hacklab.nilfm.cc/quartzgun/auth"
"hacklab.nilfm.cc/quartzgun/cookie"
"os" "os"
"strconv" "strconv"
"strings" "strings"

View file

@ -3,10 +3,10 @@ package middleware
import ( import (
"context" "context"
"fmt" "fmt"
"hacklab.nilfm.cc/quartzgun/auth" "forge.lightcrystal.systems/nilix/quartzgun/auth"
"hacklab.nilfm.cc/quartzgun/cookie" "forge.lightcrystal.systems/nilix/quartzgun/cookie"
"hacklab.nilfm.cc/quartzgun/renderer" "forge.lightcrystal.systems/nilix/quartzgun/renderer"
"hacklab.nilfm.cc/quartzgun/util" "forge.lightcrystal.systems/nilix/quartzgun/util"
"net/http" "net/http"
"strings" "strings"
) )

View file

@ -3,11 +3,11 @@ package main
import ( import (
"context" "context"
"fmt" "fmt"
"hacklab.nilfm.cc/quartzgun/indentalUserDB" "forge.lightcrystal.systems/nilix/quartzgun/indentalUserDB"
"hacklab.nilfm.cc/quartzgun/middleware" "forge.lightcrystal.systems/nilix/quartzgun/middleware"
"hacklab.nilfm.cc/quartzgun/rateLimiter" "forge.lightcrystal.systems/nilix/quartzgun/rateLimiter"
"hacklab.nilfm.cc/quartzgun/renderer" "forge.lightcrystal.systems/nilix/quartzgun/renderer"
"hacklab.nilfm.cc/quartzgun/router" "forge.lightcrystal.systems/nilix/quartzgun/router"
"html/template" "html/template"
"net/http" "net/http"
"testing" "testing"