This repository has been archived on 2024-12-07. You can view files and clone it, but cannot push or open issues or pull requests.
helseveileder/backend/cmd/main.go
haraldnilsen 6d831193f9 defined post-endpoint
Co-authored-by: Sindre Kjelsrud <kjelsrudsindre@gmail.com>
2023-12-21 20:59:52 +01:00

46 lines
982 B
Go

package main
import (
"fmt"
"net/http"
"helseveileder/db"
"github.com/gin-gonic/gin"
)
type FormData struct {
Age string `json:"age"`
Education string `json:"education"`
HealthcarePersonnel bool `json:"healthcare_personnel"`
Gender string `json:"gender"`
}
func main() {
router := gin.Default()
// Define a basic GET request handler
router.GET("/ping", func(c *gin.Context) {
c.JSON(http.StatusOK, gin.H{
"message": "pong",
})
})
// Info about user
router.POST("/submitform", func(c *gin.Context) {
var requestBody FormData
if err := c.BindJSON(&requestBody); err != nil {
fmt.Print(err)
}
fmt.Print(requestBody)
db.InsertData(requestBody.Age, requestBody.Education, requestBody.HealthcarePersonnel, requestBody.Gender)
})
// Run the server on port 8080
router.Run(":8080")
// db.SetupDb()
}