feat:#36 added protobuf for golang microservices

This commit is contained in:
Elmar Kresse
2024-06-16 02:54:50 +02:00
parent a56c17e945
commit 8548a537ec
55 changed files with 186 additions and 990 deletions

View File

@@ -3,7 +3,7 @@ package connector
import (
"encoding/json"
"errors"
"htwkalender-ical/model"
"htwkalender/ical/model"
"log/slog"
)
@@ -51,8 +51,6 @@ func DeleteFeedRecord(token string) error {
func GetModuleWithEvents(module model.FeedModule) (model.Module, error) {
var modules model.Module
// /api/module?uuid=
response, err := RequestApi("/api/module?uuid=" + module.UUID)
if err != nil {
return model.Module{}, err

View File

@@ -2,7 +2,7 @@ package connector
import (
"github.com/gofiber/fiber/v3/client"
"htwkalender-ical/model"
"htwkalender/ical/model"
"time"
)