stelae 0.6.3

A collection of tools in Rust and Python for preserving, authenticating, and accessing laws in perpetuity.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Headers used in the Stelae server.

/// Provides the relative file path (starting from the git repository)
/// of the corresponding git blob.
///
/// This header is included in responses from the `git` microserver and the `_stelae` endpoint,
/// indicating the location of the file within the repository.
///
/// Example:
///
/// For a URL request: `a/b/c/1`
/// the header will be set as:
///
/// `X-File-Path: a/b/c/1/index.html`
pub const HTTP_X_FILE_PATH: &str = "X-File-Path";