Skip to content

Commit

Permalink
major fix : updated username for package
Browse files Browse the repository at this point in the history
  • Loading branch information
deexithparand committed Sep 29, 2024
1 parent da0281a commit 2cc7fd4
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ To use `FileEase` in your Go project, follow these steps:
1. Install the module using the `go get` command:

```bash
go get github.com/DeexithParand2k2/FileEase
go get github.com/deexithparand/FileEase
```


Expand All @@ -22,8 +22,8 @@ To use `FileEase` in your Go project, follow these steps:

Contributions to this project are welcome! If you encounter any issues or have suggestions for improvements, feel free to:

- Open an [issue](https://github.com/DeexithParand2k2/FileEase/issues)
- Submit a [pull request](https://github.com/DeexithParand2k2/FileEase/pulls)
- Open an [issue](https://github.com/deexithparand/FileEase/issues)
- Submit a [pull request](https://github.com/deexithparand/FileEase/pulls)

## License

Expand All @@ -35,4 +35,4 @@ Check the [examples](examples) directory for usage examples.

## Troubleshooting

If you encounter any problems or have questions, please check the [FAQ](docs/FAQ.md) or [open an issue](https://github.com/DeexithParand2k2/FileEase/issues).
If you encounter any problems or have questions, please check the [FAQ](docs/FAQ.md) or [open an issue](https://github.com/deexithparand/FileEase/issues).
4 changes: 2 additions & 2 deletions examples/example.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"path/filepath"
"runtime"

"github.com/DeexithParand2k2/FileEase/pkg/fileparser"
"github.com/DeexithParand2k2/FileEase/pkg/fileparser/docx"
"github.com/deexithparand/FileEase/pkg/fileparser"
"github.com/deexithparand/FileEase/pkg/fileparser/docx"
)

func main() {
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 github.com/DeexithParand2k2/FileEase
module github.com/deexithparand/FileEase

go 1.21.3
2 changes: 1 addition & 1 deletion pkg/fileparser/docx/docx_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package docx
import (
"testing"

"github.com/DeexithParand2k2/FileEase/pkg/fileparser"
"github.com/deexithparand/FileEase/pkg/fileparser"
)

func TestDocxParser(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion pkg/fileparser/txt/txt_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package txt
import (
"testing"

"github.com/DeexithParand2k2/FileEase/pkg/fileparser"
"github.com/deexithparand/FileEase/pkg/fileparser"
)

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

0 comments on commit 2cc7fd4

Please sign in to comment.