Skip to content

Commit

Permalink
fix: Applying review comments: removing make command part from README…
Browse files Browse the repository at this point in the history
…, removing "pkg" name while importing
  • Loading branch information
RawanMostafa08 committed Sep 29, 2024
1 parent 4fcf434 commit 0520b4f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 7 deletions.
5 changes: 0 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,6 @@ This repository implements http and Gin datetime servers.
```bash
make all
```
To run a specific make target

```bash
make <target_name>
```

### 2. Using docker-compose

Expand Down
2 changes: 1 addition & 1 deletion cmd/ginserver/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"log"

pkg "github.com/codescalersinternships/Datetime-server-RawanMostafa/pkg"
"github.com/codescalersinternships/Datetime-server-RawanMostafa/pkg"
"github.com/gin-gonic/gin"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/httpserver/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"log"
"net/http"

pkg "github.com/codescalersinternships/Datetime-server-RawanMostafa/pkg"
"github.com/codescalersinternships/Datetime-server-RawanMostafa/pkg"
)

func main() {
Expand Down

0 comments on commit 0520b4f

Please sign in to comment.