remi-core

Crates.ioremi-core
lib.rsremi-core
version0.4.3
sourcesrc
created_at2023-02-09 04:56:46.079576
updated_at2023-11-25 23:32:17.692402
description๐Ÿปโ€โ„๏ธ๐Ÿงถ Core API for the remi-rs crate families
homepagehttps://docs.noelware.org/libraries/rust/remi-rs/latest/remi_core
repositoryhttps://github.com/Noelware/remi-rs/tree/master/remi_core
max_upload_size
id780493
size22,669
Noel Towa (auguwu)

documentation

README

๐Ÿปโ€โ„๏ธ๐Ÿงถ remi_core crate

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.

Example Storage Service

use remi_core::StorageService;
use async_trait::async_trait;

struct MyStorageService;

#[async_trait]
impl StorageService for MyStorageService {
    /* omitted implementation */
}
Commit count: 220

cargo fmt