# `Accrue.Storage.Null`
[🔗](https://github.com/szTheory/accrue/blob/accrue-v0.3.0/lib/accrue/storage/null.ex#L1)

No-op `Accrue.Storage` adapter — the v1.0 default (D6-04).

- `put/3` echoes the key back untouched; no filesystem or network I/O.
- `get/1` returns `{:error, :not_configured}`.
- `delete/1` returns `{:error, :not_configured}`.

Hosts enable real storage by swapping `:storage_adapter` to a custom
module implementing `Accrue.Storage`. `Accrue.Storage.Filesystem`
lands in v1.1.

---

*Consult [api-reference.md](api-reference.md) for complete listing*
