diff --git a/README.md b/README.md index abdd0f7..a163375 100644 --- a/README.md +++ b/README.md @@ -20,9 +20,12 @@ By now, the following locations are available: - Mensa Arcisstraße - StuBistro Großhadern - FMI Bistro +- IPP Bistro Call `eat -h` in order to see the correct names you need to use within the tool. +This project is using [eat-api](https://github.com/srehwald/eat-api). + ## Usage Check out the usage menu: @@ -36,6 +39,7 @@ Locations: () mensa-arcisstrasse (ma) stubistro-grosshadern (sg) fmi-bistro (fmi) + ipp-bistro (ipp) ``` diff --git a/main.go b/main.go index 2d9a78a..0d4e975 100644 --- a/main.go +++ b/main.go @@ -38,6 +38,7 @@ var locations = map[string]string{ "ma": "mensa-arcisstrasse", "sg": "stubistro-grosshadern", "fmi": "fmi-bistro", + "ipp": "ipp-bistro", } // API urls @@ -46,6 +47,7 @@ var apis = map[string]string { "mensa-arcisstrasse": "https://srehwald.github.io/eat-api/", "stubistro-grosshadern": "https://srehwald.github.io/eat-api/", "fmi-bistro": "https://srehwald.github.io/eat-api/", + "ipp-bistro": "https://srehwald.github.io/eat-api/", } var currentDate = time.Now()