Skip to content

Commit eabb9e7

Browse files
committed
add a bit of style
1 parent fe3f9fa commit eabb9e7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

β€ŽREADME.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Once you have Mojo up and running on your local machine,
6464
Alternatively, start the project in Github Codespaces for quick setup:
6565

6666
[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/saviorand/lightbug_http)
67-
2. Add your handler in `main.mojo` by passing a struct that satisfies the following trait:
67+
2. Add your handler in `lightbug.πŸ”₯` by passing a struct that satisfies the following trait:
6868
```mojo
6969
trait HTTPService:
7070
fn func(self, req: HTTPRequest) raises -> HTTPResponse:
@@ -102,7 +102,7 @@ Once you have Mojo up and running on your local machine,
102102
```
103103

104104
We plan to add routing in a future library called `lightbug_api`, see [Roadmap](#roadmap) for more details.
105-
3. Run `mojo main.mojo`. This will start up a server listening on `localhost:8080`. Or, if you prefer to import the server into your own app:
105+
3. Run `mojo lightbug.πŸ”₯`. This will start up a server listening on `localhost:8080`. Or, if you prefer to import the server into your own app:
106106
```mojo
107107
from lightbug_http.sys.server import SysServer
108108
from lightbug_http.service import Printer
File renamed without changes.

0 commit comments

Comments
Β (0)