Crates.io | remi-core |
lib.rs | remi-core |
version | 0.4.3 |
source | src |
created_at | 2023-02-09 04:56:46.079576 |
updated_at | 2023-11-25 23:32:17.692402 |
description | ๐ปโโ๏ธ๐งถ Core API for the remi-rs crate families |
homepage | https://docs.noelware.org/libraries/rust/remi-rs/latest/remi_core |
repository | https://github.com/Noelware/remi-rs/tree/master/remi_core |
max_upload_size | |
id | 780493 |
size | 22,669 |
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.
use remi_core::StorageService;
use async_trait::async_trait;
struct MyStorageService;
#[async_trait]
impl StorageService for MyStorageService {
/* omitted implementation */
}