diff --git a/src/lib.rs b/src/lib.rs index c7b235a..bf252f1 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -11,7 +11,7 @@ pub struct Config { pub async fn run(config: Config, token: CancellationToken) -> Result<(), io::Error> { let app = Router::new() - .route("/", routing::get(|| async { "Hello world!" })) + .route("/", routing::get(|| async { "Hello kube world!" })) .layer(( TraceLayer::new_for_http(), TimeoutLayer::new(Duration::from_secs(10)),