You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
447 B
25 lines
447 B
1 year ago
|
package main
|
||
|
|
||
|
import (
|
||
|
"tugas1/controllers"
|
||
|
"tugas1/initializers"
|
||
|
|
||
|
"github.com/gin-gonic/gin"
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
initializers.LoadEnvVariables()
|
||
|
initializers.ConnectToDB()
|
||
|
}
|
||
|
|
||
|
func main() {
|
||
|
r := gin.Default()
|
||
|
|
||
|
r.POST("/posts", controllers.PostsCreate)
|
||
|
r.PUT("/posts/:id", controllers.PostsUpdate)
|
||
|
r.GET("/posts", controllers.PostsIndex)
|
||
|
r.GET("/posts/:id", controllers.PostsShow)
|
||
|
r.DELETE("/posts/:id", controllers.PostsDelete)
|
||
|
r.Run()
|
||
|
}
|