From 96f103449932914c484a8149e3f370465d99bb5c Mon Sep 17 00:00:00 2001 From: Rchanger Date: Fri, 5 Feb 2021 17:38:42 +0000 Subject: [PATCH 1/2] demo docker commit --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 28102ce..f369010 100644 --- a/README.md +++ b/README.md @@ -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 \ No newline at end of file +5. Post - http://localhost:3032/auth/login + +Changes added From dc986cb58946c5e1ca0864c18cdf7ac696a0cea0 Mon Sep 17 00:00:00 2001 From: Rchanger Date: Fri, 5 Feb 2021 17:40:46 +0000 Subject: [PATCH 2/2] another commit --- go.mod | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 go.mod diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..585649a --- /dev/null +++ b/go.mod @@ -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 +)