hyperlane_config 23.0.14

Hyperlane configuration module providing comprehensive configuration management capabilities for the framework.
Documentation
1
2
3
4
5
6
7
8
/// Default Cache-Control header value for static assets with long-term caching and immutability.
pub const DEFAULT_CACHE_CONTROL_STATIC_ASSETS: &str = "public, max-age=31536000, immutable";

/// Default Cache-Control header value for short-term caching of dynamic content.
pub const DEFAULT_CACHE_CONTROL_SHORT_TERM: &str = "public, max-age=3600";

/// Default Expires header value set to a far-future date for long-term caching.
pub const DEFAULT_EXPIRES_FAR_FUTURE: &str = "Wed, 1 Apr 8888 00:00:00 GMT";