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 ( import (
"net/http" "net/http"
"nilfm.cc/git/quartzgun/cookie" "hacklab.nilfm.cc/quartzgun/cookie"
"time" "time"
) )

2
go.mod
View file

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

View file

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

View file

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