Add Calls tab

This commit is contained in:
lowcarbdev
2025-11-15 15:10:12 -07:00
parent 848bf84341
commit 98901957f2
5 changed files with 400 additions and 3 deletions
+2 -1
View File
@@ -7,9 +7,9 @@ import (
"os"
"time"
"github.com/lowcarbdev/sbv/internal"
"github.com/labstack/echo/v4"
"github.com/labstack/echo/v4/middleware"
"github.com/lowcarbdev/sbv/internal"
)
var logger *slog.Logger
@@ -69,6 +69,7 @@ func main() {
protected.GET("/conversations", internal.HandleConversations)
protected.GET("/messages", internal.HandleMessages)
protected.GET("/activity", internal.HandleActivity)
protected.GET("/calls", internal.HandleCalls)
protected.GET("/daterange", internal.HandleDateRange)
protected.GET("/progress", internal.HandleProgress)
protected.GET("/media", internal.HandleMedia)