ETRI_SMARTFARM_POC/main.go

12 lines
160 B
Go
Raw Normal View History

2021-11-08 01:47:27 +00:00
package main
import (
"etrismartfarmpoc/router"
"net/http"
)
func main() {
http.ListenAndServe(":3000", router.NewRouter())
// fmt.Println(string(out))
}