diff --git a/go.mod b/go.mod index 5f2b081..2db45bf 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module git.hrafn.xyz/aether/notes +module git.hrafn.xyz/aether/gotes go 1.26.1 diff --git a/internal/models/note_test.go b/internal/models/note_test.go index dd9bbd6..8ada70e 100644 --- a/internal/models/note_test.go +++ b/internal/models/note_test.go @@ -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) { diff --git a/internal/repository/notes.go b/internal/repository/notes.go index 4218d23..cfa04b1 100644 --- a/internal/repository/notes.go +++ b/internal/repository/notes.go @@ -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. diff --git a/internal/repository/notes_test.go b/internal/repository/notes_test.go index 3aac8a7..8346475 100644 --- a/internal/repository/notes_test.go +++ b/internal/repository/notes_test.go @@ -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 diff --git a/internal/repository/notestore.go b/internal/repository/notestore.go index 100d7fc..26cd6f1 100644 --- a/internal/repository/notestore.go +++ b/internal/repository/notestore.go @@ -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. diff --git a/internal/repository/notestore_test.go b/internal/repository/notestore_test.go index 623a8cd..8d5bd2f 100644 --- a/internal/repository/notestore_test.go +++ b/internal/repository/notestore_test.go @@ -5,7 +5,7 @@ import ( "context" "fmt" - "git.hrafn.xyz/aether/notes/internal/models" + "git.hrafn.xyz/aether/gotes/internal/models" ) type mockNoteStore struct { diff --git a/internal/store/sqlite/sqlite.go b/internal/store/sqlite/sqlite.go index b9d414f..04bf231 100644 --- a/internal/store/sqlite/sqlite.go +++ b/internal/store/sqlite/sqlite.go @@ -9,7 +9,7 @@ import ( "modernc.org/sqlite" - "git.hrafn.xyz/aether/notes/internal/models" + "git.hrafn.xyz/aether/gotes/internal/models" ) const sqlSet = ` diff --git a/internal/store/sqlite/sqlite_test.go b/internal/store/sqlite/sqlite_test.go index 96d75a9..0f7bbf5 100644 --- a/internal/store/sqlite/sqlite_test.go +++ b/internal/store/sqlite/sqlite_test.go @@ -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) { diff --git a/isolated/server/main.go b/isolated/server/main.go index 968355a..b881fbf 100644 --- a/isolated/server/main.go +++ b/isolated/server/main.go @@ -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() { diff --git a/isolated/simplecli/main.go b/isolated/simplecli/main.go index e19afcd..8f177f7 100644 --- a/isolated/simplecli/main.go +++ b/isolated/simplecli/main.go @@ -5,7 +5,7 @@ import ( "log" "os" - "git.hrafn.xyz/aether/notes/client" + "git.hrafn.xyz/aether/gotes/client" ) func main() { diff --git a/server/server.go b/server/server.go index 33fff69..1f292f6 100644 --- a/server/server.go +++ b/server/server.go @@ -8,7 +8,7 @@ import ( "strconv" "time" - "git.hrafn.xyz/aether/notes/internal/repository" + "git.hrafn.xyz/aether/gotes/internal/repository" ) type Server struct {