Implementing a UserStore
Learning Axum
In our previous blog post we covered how to implement axum’s SessionStore trait. In this post we will continue where we left off and implement UserStore
Before we dive into the implementation details, let’s first provide some background information on UserStore. It is a component of the axum-login crate that stores the authenticated user’s state. To use the UserStore, you first need to create an auth layer and then register and then register it with your application.
[Read More]