src/lightspeed.gleam

//// Public root module for Lightspeed.

/// The current Lightspeed package version exposed to application code.
pub const package_version = "1.0.0"

/// The current Lightspeed protocol name.
pub const protocol_name = "lightspeed"

/// The current Lightspeed protocol version.
pub const protocol_version = 1

/// Returns a short runtime banner useful for logs and examples.
pub fn banner() -> String {
  "Lightspeed " <> package_version
}