-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.go
84 lines (69 loc) · 1.49 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
// Golang REST API program
package main
import (
"fmt"
"github.com/gin-gonic/gin"
"net/http"
"strconv"
)
type MathMessage struct {
Operation string
Result int
}
type Message struct {
Method string
Message string
}
func SampleGet(c *gin.Context) {
c.JSON(http.StatusOK, Message{
Method: http.MethodGet,
Message: "GetMethod called",
})
}
func SamplePost(c *gin.Context) {
c.JSON(http.StatusOK, Message{
Method: http.MethodPost,
Message: "PostMethod called",
})
}
func SamplePut(c *gin.Context) {
c.JSON(http.StatusOK, Message{
Method: http.MethodPut,
Message: "PutMethod called",
})
}
func SampleDelete(c *gin.Context) {
c.JSON(http.StatusOK, Message{
Method: http.MethodDelete,
Message: "DeleteMethod called",
})
}
func AddMethod(c *gin.Context) {
x, _ := strconv.Atoi(c.Param("x"))
y, _ := strconv.Atoi(c.Param("y"))
c.JSON(http.StatusOK, MathMessage{
Operation: fmt.Sprintf("%d + %d", x, y),
Result: x + y,
})
}
func SubtractMethod(c *gin.Context) {
x, _ := strconv.Atoi(c.Param("x"))
y, _ := strconv.Atoi(c.Param("y"))
c.JSON(http.StatusOK, MathMessage{
Operation: fmt.Sprintf("%d - %d", x, y),
Result: x - y,
})
}
func main() {
router := gin.Default()
// Sample routes
router.GET("/", SampleGet)
router.POST("/", SamplePost)
router.PUT("/", SamplePut)
router.DELETE("/", SampleDelete)
// Math operations
router.GET("/add/:x/:y", AddMethod)
router.GET("/subtract/:x/:y", SubtractMethod)
listenPort := "4000"
router.Run(":" + listenPort)
}