Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[submodule "external/go"]
path = external/go
url = https://github.com/dappcore/go.git
branch = dev
[submodule "external/go-io"]
path = external/go-io
url = https://github.com/dappcore/go-io.git
branch = dev
11 changes: 11 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# go-cache Agent Notes

This repository follows the core/go v0.9 layout:

- Go module source lives under `go/`.
- Root `go.work` lists `./go` and local dependency checkouts under `external/`.
- Do not edit `.core/` runtime configuration.
- Do not edit source inside `external/`; only submodule pointers should change.

Use `core.Result` for fallible package APIs and core/go wrappers for filesystem,
JSON, process, string, and environment operations.
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# go-cache

`dappco.re/go/cache` provides a storage-agnostic cache backed by
`dappco.re/go/io` media. It stores JSON entries, binary sidecars, scoped caches,
and request/response metadata for HTTP cache workflows.

## Development

The module lives in `go/`.

```sh
cd go
GOWORK=off GOPROXY=direct GOSUMDB=off go test -count=1 -short ./...
```

The repository is v0.9.0 audit-driven; the release contract is:

```sh
bash /Users/snider/Code/core/go/tests/cli/v090-upgrade/audit.sh .
```
Loading
Loading