Skip to content

Commit

Permalink
Merge pull request #10 from uelei/fix-go-mod
Browse files Browse the repository at this point in the history
change go mod file reference to github
  • Loading branch information
uelei authored Nov 5, 2023
2 parents dc4f1d1 + b13dfc8 commit e07c95b
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,17 @@

This is a small project to fetch data from BCB (Brazilian Central Bank) to get
all exchanges rates between a currency and BRL


## To Install

```bash
go install github.com/uelei/brl-rate-get@latest

# OR

go install github.com/uelei/[email protected]
```

## Help

```bash
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module uelei/brl-rate-get
module github.com/uelei/brl-rate-get

go 1.17
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"
"os"
"strings"
"uelei/brl-rate-get/pkg"
"github.com/uelei/brl-rate-get/pkg"
)

func handle_get(currency string) {
Expand Down
2 changes: 1 addition & 1 deletion pkg/lib_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"os"
"testing"
"time"
lib "uelei/brl-rate-get/pkg"
lib "github.com/uelei/brl-rate-get/pkg"
)

func TestWriteResultsToCSV(t *testing.T) {
Expand Down

0 comments on commit e07c95b

Please sign in to comment.