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 diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..5e0eb29 --- /dev/null +++ b/go.mod @@ -0,0 +1,15 @@ +module GitHelper/server + +go 1.14 + +require ( + github.com/BurntSushi/toml v0.3.1 + github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect + github.com/google/go-github v17.0.0+incompatible + github.com/google/go-querystring v1.0.0 // indirect + github.com/labstack/echo v3.3.10+incompatible + github.com/labstack/gommon v0.3.0 // indirect + github.com/stretchr/testify v1.4.0 + github.com/valyala/fasttemplate v1.2.1 // indirect + golang.org/x/oauth2 v0.0.0-20210201163806-010130855d6c +)