got a basic route going

This commit is contained in:
2026-06-11 19:39:26 -06:00
parent 94c35a9c72
commit 1da9022cf5
2 changed files with 15 additions and 0 deletions
@@ -0,0 +1,11 @@
package controllers
import (
"github.com/gin-gonic/gin"
)
func GetMovies() gin.HandlerFunc {
return func(ginContext *gin.Context) {
ginContext.JSON(200, gin.H{"message": "list of movies"})
}
}