fraiseql-server 2.0.0-alpha.1

HTTP server for FraiseQL v2 GraphQL engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Storage backend implementations

pub mod local;

#[cfg(feature = "aws-s3")]
pub mod s3;

// Re-export types from traits
pub use crate::files::{
    error::StorageError,
    traits::{StorageBackend, StorageMetadata, StorageResult},
};