Move internal references to new source hosting
Some checks failed
/ golint (push) Failing after 3m50s

This commit is contained in:
Eli Ribble 2026-05-19 15:33:57 +00:00
parent 8c8e360bf6
commit 7237f5f666
No known key found for this signature in database
239 changed files with 771 additions and 775 deletions

View file

@ -1,7 +1,7 @@
package html
import (
"github.com/Gleipnir-Technology/nidus-sync/config"
"source.gleipnir.technology/Gleipnir/nidus-sync/config"
)
type ContentConfig struct {

View file

@ -12,7 +12,7 @@ import (
"net/http"
//"time"
//"github.com/Gleipnir-Technology/nidus-sync/config"
//"source.gleipnir.technology/Gleipnir/nidus-sync/config"
//"github.com/aarondl/opt/null"
//"github.com/google/uuid"
"github.com/rs/zerolog/log"
@ -94,4 +94,3 @@ func (ts templateSystemEmbed) renderOrError(w http.ResponseWriter, template_name
log.Error().Err(err).Msg("failed to write buffer on render")
}
}

View file

@ -7,8 +7,8 @@ import (
"net/http"
"os"
"github.com/Gleipnir-Technology/nidus-sync/config"
"github.com/rs/zerolog/log"
"source.gleipnir.technology/Gleipnir/nidus-sync/config"
)
// The filesystem being used

View file

@ -12,7 +12,7 @@ import (
"strings"
"time"
//"github.com/Gleipnir-Technology/nidus-sync/static"
//"source.gleipnir.technology/Gleipnir/nidus-sync/static"
"github.com/aarondl/opt/null"
"github.com/google/uuid"
"github.com/rs/zerolog/log"

View file

@ -4,9 +4,9 @@ import (
"context"
"net/http"
nhttp "github.com/Gleipnir-Technology/nidus-sync/http"
"github.com/gorilla/schema"
"github.com/rs/zerolog/log"
nhttp "source.gleipnir.technology/Gleipnir/nidus-sync/http"
)
var decoder = schema.NewDecoder()

View file

@ -3,9 +3,6 @@ package html
import (
"bytes"
"fmt"
"github.com/Gleipnir-Technology/nidus-sync/lint"
"github.com/Gleipnir-Technology/nidus-sync/platform"
"github.com/Gleipnir-Technology/nidus-sync/platform/file"
"github.com/google/uuid"
"github.com/rs/zerolog/log"
"image"
@ -15,6 +12,9 @@ import (
"io"
"mime/multipart"
"net/http"
"source.gleipnir.technology/Gleipnir/nidus-sync/lint"
"source.gleipnir.technology/Gleipnir/nidus-sync/platform"
"source.gleipnir.technology/Gleipnir/nidus-sync/platform/file"
)
func ExtractImageUpload(headers *multipart.FileHeader) (upload platform.ImageUpload, err error) {

View file

@ -3,7 +3,7 @@ package html
import (
"strconv"
"github.com/Gleipnir-Technology/nidus-sync/config"
"source.gleipnir.technology/Gleipnir/nidus-sync/config"
)
type ContentURL struct {