Connecting our cache
We currently have the raw functions that interact with our cache. However, we are going to utilize a procedure of verifying a user request throughout our system on any server. I have chosen to put our interface for checking the user session for the request in the auth kernel with the following file structure:
└── nanoservices
├── auth
│ ├── kernel
│ │ ├── Cargo.toml
│ │ └── src
│ │ ├── api
│ │ │ ├── . . .
│ │ ├── lib.rs
│ │ └── user_session
│ │ ├── descriptors.rs
│ │ ├── mod.rs
│ │ ...