remi_core is the base API that all the supporting libraries are based off. This should only be referenced if you're creating your own storage service.
```rust use remicore::StorageService; use asynctrait::async_trait;
struct MyStorageService;
impl StorageService for MyStorageService { /* omitted implementation */ } ```