···11+_A pocket dimension to stash a bit of non-public user data._
22+33+44+# Pocket: user preference storage
55+66+This API leverages atproto service proxying to offer a bit of per-user per-app non-public data storage.
77+Perfect for things like application preferences that might be better left out of the public PDS data.
88+99+The intent is to use oauth scopes to isolate storage on a per-application basis, and to allow easy data migration from a community hosted instance to your own if you end up needing that.
1010+1111+1212+### Current status
1313+1414+> [!important]
1515+> Pocket is currently in a **v0, pre-release state**. There is one production instance and you can use it! Expect short downtimes for restarts as development progresses and occaisional data loss until it's stable.
1616+1717+ATProto might end up adding a similar feature to [PDSs](https://atproto.com/guides/glossary#pds-personal-data-server). If/when that happens, you should use it instead of this!
+1-1
pocket/src/lib.rs
···22mod token;
3344pub use server::serve;
55-pub use token::verify;
55+pub use token::TokenVerifier;