examples/using-add-rest-handlers/README.md
# AddRESTHandlers Example
This GoFr example demonstrates a simple HTTP server with CRUD operations which are created by GoFr using the given struct.
### To run the example follow the steps below:
- Run the docker image of MySQL
```console
docker run --name gofr-mysql -e MYSQL_ROOT_PASSWORD=password -e MYSQL_DATABASE=test -p 2001:3306 -d mysql:8.0.30
```
- Now run the example
```console
go run main.go
```