static_web_server/fs/mod.rs
1// SPDX-License-Identifier: MIT OR Apache-2.0
2// This file is part of Static Web Server.
3// See https://static-web-server.net/ for more information
4// Copyright (C) 2019-present Jose Quintana <joseluisq.net>
5
6//! A module that provides several facilities for working with files.
7//!
8
9pub(crate) mod meta;
10pub(crate) mod path;
11pub(crate) mod stream;