Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,6 @@
2. Post - http://localhost:3032/movies - requires authorization(bearer) token
3. Delete - http://localhost:3032/movies/{id} - requires authorization(bearer) token
4. Patch - http://localhost:3032/movies/{id} - requires authorization(bearer) token and allows only score and popularity field changes.
5. Post - http://localhost:3032/auth/login
5. Post - http://localhost:3032/auth/login

Changes added
10 changes: 10 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
module fynd/IMDB

go 1.14

require (
github.com/BurntSushi/toml v0.3.1
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/pquerna/ffjson v0.0.0-20190930134022-aa0246cd15f7
gopkg.in/mgo.v2 v2.0.0-20190816093944-a6b53ec6cb22
)