-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
42 lines (33 loc) · 1.08 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
package main
import (
"log"
"net/http"
"time"
"github.com/gabystallo/go-hexagonal-api-base/domain"
"github.com/gabystallo/go-hexagonal-api-base/handler"
"github.com/gabystallo/go-hexagonal-api-base/service"
_ "github.com/go-sql-driver/mysql"
"github.com/gorilla/mux"
"github.com/jmoiron/sqlx"
)
func main() {
log.Println("Connecting to the database")
db, err := sqlx.Open("mysql", "root@tcp(127.0.0.1)/test")
if err != nil {
panic(err)
}
// ph := handler.NewPersonHandler(service.NewPersonService(domain.NewPersonRepositoryStub()))
ph := handler.NewPersonHandler(service.NewPersonService(domain.NewPersonRepositoryMysql(db)))
r := mux.NewRouter()
r.HandleFunc("/persons", ph.GetAllPersons).Methods(http.MethodGet)
r.HandleFunc("/persons/{id:[0-9]+}", ph.GetPersonById).Methods(http.MethodGet)
r.HandleFunc("/persons", ph.CreatePerson).Methods(http.MethodPost)
srv := &http.Server{
Handler: r,
Addr: "127.0.0.1:8000",
WriteTimeout: 15 * time.Second,
ReadTimeout: 15 * time.Second,
}
log.Println("Starting server")
log.Fatal(srv.ListenAndServe())
}