eat my own dogfood

This commit is contained in:
Cadey Ratio 2019-11-11 17:00:32 +00:00
parent 8509090f53
commit f3a411a620
18 changed files with 12 additions and 12 deletions

View File

@ -9,8 +9,8 @@ import (
"strings" "strings"
"time" "time"
"christine.website/internal" "christine.website/cmd/site/internal"
"christine.website/internal/blog" "christine.website/cmd/site/internal/blog"
"github.com/prometheus/client_golang/prometheus" "github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/client_golang/prometheus/promauto" "github.com/prometheus/client_golang/prometheus/promauto"
"within.website/ln" "within.website/ln"

View File

@ -9,7 +9,7 @@ import (
"strings" "strings"
"time" "time"
"christine.website/internal/front" "christine.website/cmd/site/internal/front"
"github.com/russross/blackfriday" "github.com/russross/blackfriday"
) )

View File

@ -5,7 +5,7 @@ import (
) )
func TestLoadPosts(t *testing.T) { func TestLoadPosts(t *testing.T) {
posts, err := LoadPosts("../../blog", "blog") posts, err := LoadPosts("../../../../blog", "blog")
if err != nil { if err != nil {
t.Fatal(err) t.Fatal(err)
} }
@ -16,7 +16,7 @@ func TestLoadPosts(t *testing.T) {
} }
func TestLoadTalks(t *testing.T) { func TestLoadTalks(t *testing.T) {
talks, err := LoadPosts("../../talks", "talks") talks, err := LoadPosts("../../../../talks", "talks")
if err != nil { if err != nil {
t.Fatal(err) t.Fatal(err)
} }
@ -30,7 +30,7 @@ func TestLoadTalks(t *testing.T) {
} }
func TestLoadGallery(t *testing.T) { func TestLoadGallery(t *testing.T) {
gallery, err := LoadPosts("../../gallery", "gallery") gallery, err := LoadPosts("../../../../gallery", "gallery")
if err != nil { if err != nil {
t.Fatal(err) t.Fatal(err)
} }

View File

@ -4,7 +4,7 @@ import (
"fmt" "fmt"
"log" "log"
"christine.website/internal/front" "christine.website/cmd/site/internal/front"
) )
var markdown = []byte(`--- var markdown = []byte(`---

View File

@ -9,7 +9,7 @@ import (
"testing" "testing"
"time" "time"
"christine.website/internal/jsonfeed" "christine.website/cmd/site/internal/jsonfeed"
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
) )

View File

@ -9,9 +9,9 @@ import (
"sort" "sort"
"time" "time"
"christine.website/internal/blog" "christine.website/cmd/site/internal/blog"
"christine.website/internal/jsonfeed" "christine.website/cmd/site/internal/jsonfeed"
"christine.website/internal/middleware" "christine.website/cmd/site/internal/middleware"
"github.com/gorilla/feeds" "github.com/gorilla/feeds"
"github.com/povilasv/prommod" "github.com/povilasv/prommod"
"github.com/prometheus/client_golang/prometheus" "github.com/prometheus/client_golang/prometheus"

View File

@ -5,7 +5,7 @@ import (
"net/http" "net/http"
"time" "time"
"christine.website/internal" "christine.website/cmd/site/internal"
"within.website/ln" "within.website/ln"
"within.website/ln/opname" "within.website/ln/opname"
) )