From 335eb1d1c07751e950eda385bac120c5ea75c865 Mon Sep 17 00:00:00 2001 From: varopxndx Date: Fri, 1 Oct 2021 18:54:43 -0500 Subject: [PATCH] Add my frist API readme --- Projects/2-Intermediate/My-API.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 Projects/2-Intermediate/My-API.md diff --git a/Projects/2-Intermediate/My-API.md b/Projects/2-Intermediate/My-API.md new file mode 100644 index 00000000..8aa87433 --- /dev/null +++ b/Projects/2-Intermediate/My-API.md @@ -0,0 +1,27 @@ +# My First API + +**Tier:** 2-Intermediate + +Create a Pokédex REST API using Go and Gorilla Mux. + +- Basics of Go programming language. +- Gorilla Mux + +## User Stories + +- [ ] User can create a Pokémon. +- [ ] User can retrieve a Pokémon. + +### Bonus features + +- [ ] Implement a more complex storage service, such as a DB or a CSV file. +- [ ] Create a service that fetches information from the API. + +## Useful links and resources + +- [A tour of Go](https://tour.golang.org) +- [Gorilla Mux](https://github.com/gorilla/mux) + +## Example projects + +- [pokeapi-go](https://github.com/mtslzr/pokeapi-go)