Add basic resource information in about response

This commit is contained in:
Ingo Oppermann
2024-08-20 11:55:08 +02:00
parent 0b1601542d
commit 68607ed932
6 changed files with 58 additions and 24 deletions

View File

@@ -19,7 +19,7 @@ func getDummyAboutRouter() (*echo.Echo, error) {
return nil, err
}
handler := NewAbout(rs, func() []string { return []string{} })
handler := NewAbout(rs, nil, func() []string { return []string{} })
router.Add("GET", "/", handler.About)