feat:#36 updated feed service with more protobuf endpoints

This commit is contained in:
Elmar Kresse
2024-06-18 23:46:23 +02:00
parent 4792b07e8c
commit acc048a80a
10 changed files with 197 additions and 69 deletions

View File

@@ -14,7 +14,7 @@ const expirationTime = 5 * time.Minute
func Feed(app model.AppType, token string) (string, error) {
// get feed by token
feed, err := connector.GetFeedByToken(app.DataManagerURL, token)
feed, err := htwkalenderGrpc.GetFeed(token, app.GrpcClient)
if err != nil {
return "", err
}