implemented critical features in Restful Golang API which'll handle Neo4j interactions.

This commit is contained in:
2025-05-10 22:34:12 -06:00
parent bd59f428ba
commit 228cf1137b
9 changed files with 797 additions and 17 deletions
+1
View File
@@ -24,6 +24,7 @@ func ServeApi(
for i := range endpoints {
apiR.HandleFunc(endpoints[i], functions[i]).Methods(methods[i])
}
apiR.Use(auth_middleware)
apiSrv := &http.Server{
Addr: "0.0.0.0:" + port,