Files
GenerationsHeritage/backend/handlers/verifyRelationship.go
2024-04-15 23:47:25 +02:00

13 lines
214 B
Go

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) {
}
}