> For the complete documentation index, see [llms.txt](https://davidsietz.gitbook.io/workspace/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://davidsietz.gitbook.io/workspace/module-02/02-section-04.md).

# Section IV - Creating a Hello World RESTful Endpoint

> [hello-world.rs](https://github.com/dsietz/rust-daas/blob/master/src/bin/hello-world.rs)

In this section, we will be creating a Hello World RESTful Endpoint. This will require us to modify the following files:

* Cargo.toml (manifest)
* src/lib.rs (library)
* src/hello\_world.rs (module)
* src/bin/hello-world.rs (executable)
