AnatolyShirykalov

Results 1 comments of AnatolyShirykalov

It is possible to mount handler ```go package main import ( "github.com/prest/adapters/postgres" "github.com/prest/cmd" "github.com/prest/config" "log" "net/http" ) func main() { config.Load() postgres.Load() http.Handle("/", cmd.MakeHandler()) log.Fatal(http.ListenAndServe(":8080", nil)) } ```