Skip to content

Commit

Permalink
change package name
Browse files Browse the repository at this point in the history
  • Loading branch information
h-varmazyar committed Jun 9, 2023
1 parent 77e46e4 commit c186a7f
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ RUN cd /src && make test build

FROM alpine
WORKDIR /app
COPY --from=builder /src/persian_tools /app/
ENTRYPOINT ./persian_tools
COPY --from=builder /src/gopet /app/
ENTRYPOINT ./gopet
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ GOBUILD=$(GOCMD) build
GOCLEAN=$(GOCMD) clean
GOTEST=$(GOCMD) test
GOGET=$(GOCMD) get
BINARY_NAME=persian_tools
BINARY_NAME=gopet
LINTER=golangci-lint

all: test build
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<p align="center">
<img src="https://raw.githubusercontent.com/persian-tools/persian-tools/master/images/logo.png" width="200" />
</p>
<h1 align="center">Persian tools</h1>
<h1 align="center">Go Persian tools</h1>
<p align="center">An anthology of a variety of tools for the Persian language in Golang</p>
</div>

Expand All @@ -28,7 +28,7 @@
first we have to create our request :

```go
bills "github.com/h-varmazyar/persian_tools/bills"
bills "github.com/h-varmazyar/gopet/bills"
.
.
.
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/h-varmazyar/persian_tools
module github.com/h-varmazyar/gopet

go 1.13

Expand Down
8 changes: 4 additions & 4 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ package main
import (
"fmt"

"github.com/h-varmazyar/persian_tools/bank"
bills "github.com/h-varmazyar/persian_tools/bill"
digits "github.com/h-varmazyar/persian_tools/digit"
"github.com/h-varmazyar/persian_tools/national_id"
"github.com/h-varmazyar/gopet/bank"
bills "github.com/h-varmazyar/gopet/bill"
digits "github.com/h-varmazyar/gopet/digit"
"github.com/h-varmazyar/gopet/national_id"
)

func main() {
Expand Down

0 comments on commit c186a7f

Please sign in to comment.