aquila_server 0.1.3

Aquila asset server
Documentation

Aquila Server

Crates.io Downloads Docs

A modular, Axum-based asset server implementation.

Provides the [AquilaServer] builder, which ties together a storage backend and an authentication provider to serve assets.

Example

use aquila_server::prelude::*;
use aquila_fs::FileSystemStorage;
use aquila_auth_mock::AllowAllAuth;

let storage = FileSystemStorage::new("./assets");
let auth = AllowAllAuth;

let app = AquilaServer::default().build(storage, auth);

License: MIT OR Apache-2.0