domain update
This commit is contained in:
parent
9eddbac6f9
commit
313e2ab0a4
|
@ -1,6 +1,6 @@
|
|||
package fetch
|
||||
|
||||
import "ewintr.nl/yogai/model"
|
||||
import "go-mod.ewintr.nl/yogai/model"
|
||||
|
||||
type FeedEntry struct {
|
||||
EntryID int64
|
||||
|
|
|
@ -3,8 +3,8 @@ package fetch
|
|||
import (
|
||||
"time"
|
||||
|
||||
"ewintr.nl/yogai/model"
|
||||
"ewintr.nl/yogai/storage"
|
||||
"go-mod.ewintr.nl/yogai/model"
|
||||
"go-mod.ewintr.nl/yogai/storage"
|
||||
"github.com/google/uuid"
|
||||
"golang.org/x/exp/slog"
|
||||
)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
package fetch
|
||||
|
||||
import "ewintr.nl/yogai/model"
|
||||
import "go-mod.ewintr.nl/yogai/model"
|
||||
|
||||
type Metadata struct {
|
||||
Title string
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
package fetch
|
||||
|
||||
import "ewintr.nl/yogai/model"
|
||||
import "go-mod.ewintr.nl/yogai/model"
|
||||
|
||||
type SummaryFetcher interface {
|
||||
FetchSummary(video *model.Video) error
|
||||
|
|
|
@ -3,7 +3,7 @@ package fetch
|
|||
import (
|
||||
"strings"
|
||||
|
||||
"ewintr.nl/yogai/model"
|
||||
"go-mod.ewintr.nl/yogai/model"
|
||||
"google.golang.org/api/youtube/v3"
|
||||
)
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ import (
|
|||
"path"
|
||||
"strings"
|
||||
|
||||
"ewintr.nl/yogai/storage"
|
||||
"go-mod.ewintr.nl/yogai/storage"
|
||||
"golang.org/x/exp/slog"
|
||||
"miniflux.app/logger"
|
||||
)
|
||||
|
|
|
@ -6,8 +6,8 @@ import (
|
|||
"fmt"
|
||||
"net/http"
|
||||
|
||||
"ewintr.nl/yogai/model"
|
||||
"ewintr.nl/yogai/storage"
|
||||
"go-mod.ewintr.nl/yogai/model"
|
||||
"go-mod.ewintr.nl/yogai/storage"
|
||||
"golang.org/x/exp/slog"
|
||||
)
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@ import (
|
|||
"context"
|
||||
"fmt"
|
||||
|
||||
"ewintr.nl/yogai/model"
|
||||
"go-mod.ewintr.nl/yogai/model"
|
||||
"github.com/sashabaranov/go-openai"
|
||||
)
|
||||
|
||||
|
|
|
@ -3,8 +3,8 @@ package process
|
|||
import (
|
||||
"context"
|
||||
|
||||
"ewintr.nl/yogai/model"
|
||||
"ewintr.nl/yogai/storage"
|
||||
"go-mod.ewintr.nl/yogai/model"
|
||||
"go-mod.ewintr.nl/yogai/storage"
|
||||
"github.com/sashabaranov/go-openai"
|
||||
"golang.org/x/exp/slog"
|
||||
)
|
||||
|
|
|
@ -9,10 +9,10 @@ import (
|
|||
"strconv"
|
||||
"time"
|
||||
|
||||
"ewintr.nl/yogai/fetch"
|
||||
"ewintr.nl/yogai/handler"
|
||||
"ewintr.nl/yogai/process"
|
||||
"ewintr.nl/yogai/storage"
|
||||
"go-mod.ewintr.nl/yogai/fetch"
|
||||
"go-mod.ewintr.nl/yogai/handler"
|
||||
"go-mod.ewintr.nl/yogai/process"
|
||||
"go-mod.ewintr.nl/yogai/storage"
|
||||
"github.com/sashabaranov/go-openai"
|
||||
"golang.org/x/exp/slog"
|
||||
"google.golang.org/api/option"
|
||||
|
|
|
@ -4,7 +4,7 @@ import (
|
|||
"database/sql"
|
||||
"fmt"
|
||||
|
||||
"ewintr.nl/yogai/model"
|
||||
"go-mod.ewintr.nl/yogai/model"
|
||||
"github.com/lib/pq"
|
||||
_ "github.com/lib/pq"
|
||||
)
|
||||
|
|
|
@ -3,7 +3,7 @@ package storage
|
|||
import (
|
||||
"context"
|
||||
|
||||
"ewintr.nl/yogai/model"
|
||||
"go-mod.ewintr.nl/yogai/model"
|
||||
)
|
||||
|
||||
type FeedRelRepository interface {
|
||||
|
|
|
@ -4,7 +4,7 @@ import (
|
|||
"context"
|
||||
"net/http"
|
||||
|
||||
"ewintr.nl/yogai/model"
|
||||
"go-mod.ewintr.nl/yogai/model"
|
||||
"github.com/weaviate/weaviate-go-client/v4/weaviate"
|
||||
"github.com/weaviate/weaviate-go-client/v4/weaviate/auth"
|
||||
"github.com/weaviate/weaviate-go-client/v4/weaviate/fault"
|
||||
|
|
Loading…
Reference in New Issue