update package URL; v0.3.0

This commit is contained in:
Iris Lightshard 2023-01-30 16:41:37 -07:00
parent ab1d495514
commit 8f0c520600
Signed by: Iris Lightshard
GPG key ID: 3B7FBC22144E6398
4 changed files with 8 additions and 8 deletions

View file

@ -2,7 +2,7 @@ package auth
import (
"net/http"
"nilfm.cc/git/quartzgun/cookie"
"hacklab.nilfm.cc/quartzgun/cookie"
"time"
)

2
go.mod
View file

@ -1,4 +1,4 @@
module nilfm.cc/git/quartzgun
module hacklab.nilfm.cc/quartzgun
go 1.17

View file

@ -5,8 +5,8 @@ import (
"errors"
"fmt"
"golang.org/x/crypto/bcrypt"
"nilfm.cc/git/quartzgun/auth"
"nilfm.cc/git/quartzgun/cookie"
"hacklab.nilfm.cc/quartzgun/auth"
"hacklab.nilfm.cc/quartzgun/cookie"
"os"
"strings"
"strconv"

View file

@ -4,10 +4,10 @@ import (
"context"
"fmt"
"net/http"
"nilfm.cc/git/quartzgun/auth"
"nilfm.cc/git/quartzgun/cookie"
"nilfm.cc/git/quartzgun/renderer"
"nilfm.cc/git/quartzgun/util"
"hacklab.nilfm.cc/quartzgun/auth"
"hacklab.nilfm.cc/quartzgun/cookie"
"hacklab.nilfm.cc/quartzgun/renderer"
"hacklab.nilfm.cc/quartzgun/util"
"strings"
)