/ src / lightspeed.gleam
lightspeed.gleam
 1  //// Public root module for Lightspeed.
 2  
 3  /// The current Lightspeed package version exposed to application code.
 4  pub const package_version = "0.1.0"
 5  
 6  /// The current Lightspeed protocol name.
 7  pub const protocol_name = "lightspeed"
 8  
 9  /// The current Lightspeed protocol version.
10  pub const protocol_version = 1
11  
12  /// Returns a short runtime banner useful for logs and examples.
13  pub fn banner() -> String {
14    "Lightspeed " <> package_version
15  }