Rename to match repo name

This commit is contained in:
2026-03-19 00:51:28 +00:00
parent 4e5b535f09
commit 52405411d3
11 changed files with 16 additions and 15 deletions

2
go.mod
View File

@@ -1,4 +1,4 @@
module git.hrafn.xyz/aether/notes
module git.hrafn.xyz/aether/gotes
go 1.26.1

View File

@@ -9,7 +9,7 @@ import (
"testing"
"time"
"git.hrafn.xyz/aether/notes/internal/models"
"git.hrafn.xyz/aether/gotes/internal/models"
)
func TestContentCompletionNoteValidation(t *testing.T) {

View File

@@ -4,7 +4,7 @@ import (
"context"
"time"
"git.hrafn.xyz/aether/notes/internal/models"
"git.hrafn.xyz/aether/gotes/internal/models"
)
// NoteRepository manages operations on notes using a data store.

View File

@@ -9,8 +9,8 @@ import (
"strings"
"time"
"git.hrafn.xyz/aether/notes/internal/models"
"git.hrafn.xyz/aether/notes/internal/repository"
"git.hrafn.xyz/aether/gotes/internal/models"
"git.hrafn.xyz/aether/gotes/internal/repository"
)
var fixedTestDate = time.Date(2000, 1, 1, 0, 0, 0, 0, time.UTC) //Date is set by synctest to this specific time

View File

@@ -2,7 +2,8 @@ package repository
import (
"context"
"git.hrafn.xyz/aether/notes/internal/models"
"git.hrafn.xyz/aether/gotes/internal/models"
)
// NoteStore defines the interface for persisting and retrieving notes.

View File

@@ -5,7 +5,7 @@ import (
"context"
"fmt"
"git.hrafn.xyz/aether/notes/internal/models"
"git.hrafn.xyz/aether/gotes/internal/models"
)
type mockNoteStore struct {

View File

@@ -9,7 +9,7 @@ import (
"modernc.org/sqlite"
"git.hrafn.xyz/aether/notes/internal/models"
"git.hrafn.xyz/aether/gotes/internal/models"
)
const sqlSet = `

View File

@@ -9,8 +9,8 @@ import (
"path/filepath"
"time"
"git.hrafn.xyz/aether/notes/internal/models"
"git.hrafn.xyz/aether/notes/internal/store/sqlite"
"git.hrafn.xyz/aether/gotes/internal/models"
"git.hrafn.xyz/aether/gotes/internal/store/sqlite"
)
func TestCreateSQLiteStore(t *testing.T) {

View File

@@ -7,9 +7,9 @@ import (
"os"
"path/filepath"
"git.hrafn.xyz/aether/notes/internal/repository"
"git.hrafn.xyz/aether/notes/internal/store/sqlite"
"git.hrafn.xyz/aether/notes/server"
"git.hrafn.xyz/aether/gotes/internal/repository"
"git.hrafn.xyz/aether/gotes/internal/store/sqlite"
"git.hrafn.xyz/aether/gotes/server"
)
func main() {

View File

@@ -5,7 +5,7 @@ import (
"log"
"os"
"git.hrafn.xyz/aether/notes/client"
"git.hrafn.xyz/aether/gotes/client"
)
func main() {

View File

@@ -8,7 +8,7 @@ import (
"strconv"
"time"
"git.hrafn.xyz/aether/notes/internal/repository"
"git.hrafn.xyz/aether/gotes/internal/repository"
)
type Server struct {