mlabouardy / movies-restapi

RESTful API to manage movies written in Go and uses MongoDB as storage
MIT License
176 stars 70 forks source link

Global imports #3

Open thalesfc opened 5 years ago

thalesfc commented 5 years ago

Consider moving import to local, for example on movies-restapi/dao/movies_dao.go:

. "github.com/mlabouardy/movies-restapi/models"

can become

"../models"