🔥 removed api folder

Co-authored-by: Sindre Kjelsrud <kjelsrudsindre@gmail.com>
This commit is contained in:
haraldnilsen 2023-12-21 20:58:57 +01:00
parent dd8f22b043
commit 804d6f1d21

View file

@ -1,32 +0,0 @@
package main
import (
"fmt"
"io"
"net/http"
"github.com/gin-gonic/gin"
)
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) {
jsonData, err := io.ReadAll(c.Request.Body)
if err != nil {
// Handle error
}
fmt.Print(string(jsonData))
})
// Run the server on port 8080
router.Run(":8080")
}