ragkit/
lib.rs

1use anyhow::Error;
2
3pub fn hello() -> Result<&'static str, Error> {
4  Ok("hello world")
5}