mirror of
https://github.com/lune-org/lune.git
synced 2025-01-10 21:29:10 +00:00
11 lines
238 B
Rust
11 lines
238 B
Rust
|
use anyhow::Result;
|
||
|
|
||
|
#[allow(clippy::unnecessary_wraps)]
|
||
|
pub fn generate_from_type_definitions(contents: &str) -> Result<String> {
|
||
|
Ok(format!(
|
||
|
"--> Lune v{}\n\n{}",
|
||
|
env!("CARGO_PKG_VERSION"),
|
||
|
contents
|
||
|
))
|
||
|
}
|