create handler files

This commit is contained in:
2024-04-15 23:47:25 +02:00
parent d49601b871
commit 162fe47051
5 changed files with 16 additions and 0 deletions

View File

@@ -0,0 +1 @@
package handlers

View File

@@ -0,0 +1 @@
package handlers

View File

@@ -0,0 +1 @@
package handlers

View File

@@ -0,0 +1,12 @@
package handlers
import (
"github.com/gin-gonic/gin"
"github.com/neo4j/neo4j-go-driver/v5/neo4j"
)
func VerifyRelationship(driver neo4j.DriverWithContext) gin.HandlerFunc {
return func(c *gin.Context) {
}
}

View File

@@ -0,0 +1 @@
package handlers