# Table of contents
```rust use wildbird::derive::*;
// Convert struct to Service
struct HelloService { component_name: String, }
// Impl Service trait construct()
fn helloinit() -> HelloService { HelloService { componentname: "Hello World".to_string(), } } ```
MIT