udpate insert patient

This commit is contained in:
2025-04-21 13:58:28 +07:00
parent cdfd8da59d
commit 8c04a222ba
4 changed files with 176 additions and 22 deletions

View File

@@ -2,6 +2,7 @@ package server
import (
"fmt"
"log"
"net/http"
"os"
"strconv"
@@ -20,6 +21,7 @@ type Server struct {
func NewServer() *http.Server {
port, _ := strconv.Atoi(os.Getenv("PORT"))
log.Println("PORT: ", port)
master := os.Getenv("BLUEPRINT_DB_MASTER")
NewServer := &Server{
port: port,