feat:#49 added new ical lib for description formatting

This commit is contained in:
Elmar Kresse
2024-09-24 16:39:23 +02:00
parent 7b70499171
commit c00990dd8e
9 changed files with 299 additions and 122 deletions

View File

@@ -62,7 +62,12 @@ func main() {
DataManagerURL: "http://" + host + ":8090",
}
fiberApp.Use(logger.New())
fiberApp.Use(logger.New(
logger.Config{
Format: "[${time}] ${status} - ${latency} ${method} ${path} ${error}\n",
TimeFormat: "02-01-2006 15:04:05",
},
))
// Add routes to the app instance for the data-manager ical service
service.AddFeedRoutes(app)