-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
56 lines (45 loc) · 1.1 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
package main
import (
"fmt"
"getAdvice/models"
"getAdvice/routes"
"log"
"net/http"
"os"
"github.com/gin-gonic/contrib/static"
"github.com/gin-gonic/gin"
)
func checkErr(err error) {
if err != nil {
log.Fatal(err)
}
}
func main() {
err := models.ConnectDatabase()
checkErr(err)
server := gin.Default()
server.Static("/css", "./templates/css")
server.Static("/js", "./templates/js")
server.Use(static.Serve("/img", static.LocalFile("./templates/css/images", true)))
server.LoadHTMLGlob("templates/index.html")
server.GET("/", func(c *gin.Context) {
c.HTML(http.StatusOK, "index.html", gin.H{
"title": "Advice Hub",
})
})
//getting the keu
content, err := os.ReadFile("./classified/key.txt")
if err != nil {
log.Fatal(err)
}
fmt.Println(string(content))
webpaths := server.Group("/")
{
webpaths.GET("advices", routes.Getadvices)
webpaths.GET("advices/:id", routes.GetAdviceid)
webpaths.POST(string(content)+"advice", routes.Addadvice)
webpaths.PUT(string(content)+"advice/:id", routes.Updateadvice)
webpaths.GET("suradvice", routes.GetsurpriseAdvice)
}
server.Run()
}