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)