Files
go-receipt-tracker-api/handlers/handlers.go
2025-02-03 18:16:07 -05:00

15 lines
230 B
Go

package handlers
import (
"net/http"
"github.com/gin-gonic/gin"
"github.com/uptrace/bun"
)
var DB *bun.DB
func HomePage(ctx *gin.Context) {
ctx.JSON(http.StatusOK, gin.H{"message": "Welcome to the Receipt Tracker API"})
}