feat:#39 added module and prof fetch

This commit is contained in:
Elmar Kresse
2024-03-24 00:15:49 +01:00
parent 901ede6c97
commit 82cf9ce48c
12 changed files with 504 additions and 32 deletions

View File

@@ -13,7 +13,7 @@ func parseFaculties(url string, client *http.Client) (faculties, error) {
// the itemsPerPage is set to 100, so we need to fetch all pages until we get an empty response
var fetchedFaculties []faculty
var itemsPerPage = 100
var itemsPerPage = 999
responses, err := paginatedFetch(url, itemsPerPage, client)