diff --git a/CLAUDE.md b/CLAUDE.md index 004b238..1c7eb40 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -4,7 +4,7 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co ## What This Is -SQLite key-value store with TTL, namespace isolation, and reactive events. Pure Go (no CGO). Module: `forge.lthn.ai/core/go-store` +SQLite key-value store with TTL, namespace isolation, and reactive events. Pure Go (no CGO). Module: `dappco.re/go/core/store` ## Getting Started diff --git a/README.md b/README.md index 70d1379..05399b2 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![Go Reference](https://pkg.go.dev/badge/forge.lthn.ai/core/go-store.svg)](https://pkg.go.dev/forge.lthn.ai/core/go-store) +[![Go Reference](https://pkg.go.dev/badge/dappco.re/go/core/store.svg)](https://pkg.go.dev/dappco.re/go/core/store) [![License: EUPL-1.2](https://img.shields.io/badge/License-EUPL--1.2-blue.svg)](LICENSE.md) [![Go Version](https://img.shields.io/badge/Go-1.26-00ADD8?style=flat&logo=go)](go.mod) @@ -6,14 +6,14 @@ Group-namespaced SQLite key-value store with TTL expiry, namespace isolation, quota enforcement, and a reactive event system. Backed by a pure-Go SQLite driver (no CGO), uses WAL mode for concurrent reads, and enforces a single connection to ensure pragma consistency. Supports scoped stores for multi-tenant use, Watch/Unwatch subscriptions, and OnChange callbacks — the designed integration point for go-ws real-time streaming. -**Module**: `forge.lthn.ai/core/go-store` +**Module**: `dappco.re/go/core/store` **Licence**: EUPL-1.2 **Language**: Go 1.25 ## Quick Start ```go -import "forge.lthn.ai/core/go-store" +import "dappco.re/go/core/store" st, err := store.New("/path/to/store.db") // or store.New(":memory:") defer st.Close() diff --git a/docs/index.md b/docs/index.md index 5d9f6da..7365623 100644 --- a/docs/index.md +++ b/docs/index.md @@ -9,7 +9,7 @@ description: Group-namespaced SQLite key-value store with TTL expiry, namespace The package has a single runtime dependency -- a pure-Go SQLite driver (`modernc.org/sqlite`). No CGO is required. It compiles and runs on all platforms that Go supports. -**Module path:** `forge.lthn.ai/core/go-store` +**Module path:** `dappco.re/go/core/store` **Go version:** 1.26+ **Licence:** EUPL-1.2 @@ -22,7 +22,7 @@ import ( "fmt" "time" - "forge.lthn.ai/core/go-store" + "dappco.re/go/core/store" ) func main() { diff --git a/go.mod b/go.mod index 4c0715a..853eac3 100644 --- a/go.mod +++ b/go.mod @@ -1,9 +1,9 @@ -module forge.lthn.ai/core/go-store +module dappco.re/go/core/store go 1.26.0 require ( - forge.lthn.ai/core/go-log v0.0.4 + dappco.re/go/core/log v0.1.0 github.com/stretchr/testify v1.11.1 modernc.org/sqlite v1.47.0 ) diff --git a/go.sum b/go.sum index a7fa33e..1cf12e5 100644 --- a/go.sum +++ b/go.sum @@ -1,5 +1,3 @@ -forge.lthn.ai/core/go-log v0.0.4 h1:KTuCEPgFmuM8KJfnyQ8vPOU1Jg654W74h8IJvfQMfv0= -forge.lthn.ai/core/go-log v0.0.4/go.mod h1:r14MXKOD3LF/sI8XUJQhRk/SZHBE7jAFVuCfgkXoZPw= github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM= github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/scope.go b/scope.go index f53ebd0..3c529a9 100644 --- a/scope.go +++ b/scope.go @@ -7,7 +7,7 @@ import ( "regexp" "time" - coreerr "forge.lthn.ai/core/go-log" + coreerr "dappco.re/go/core/log" ) // validNamespace matches alphanumeric characters and hyphens (non-empty). diff --git a/store.go b/store.go index d2e0abf..c1f977f 100644 --- a/store.go +++ b/store.go @@ -9,7 +9,7 @@ import ( "text/template" "time" - coreerr "forge.lthn.ai/core/go-log" + coreerr "dappco.re/go/core/log" _ "modernc.org/sqlite" )