From 50dfdfe3da6a6ae68156c25f5dcf1d053935d391 Mon Sep 17 00:00:00 2001 From: Alessandro Cosentino Date: Wed, 25 Sep 2024 15:11:15 +0200 Subject: [PATCH] Fix import statement in docs --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b2cc4456..304bfa39 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,8 @@ Once you have a Mojo project set up locally, ``` or import individual structs and functions, e.g. ```mojo - from lightbug_http.http import HTTPService, HTTPRequest, HTTPResponse, OK, NotFound + from lightbug_http.service import HTTPService + from lightbug_http.http import HTTPRequest, HTTPResponse, OK, NotFound ``` there are some default handlers you can play with: ```mojo