Skip to content

Commit 2cc7fd4

Browse files
committed
major fix : updated username for package
1 parent da0281a commit 2cc7fd4

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ To use `FileEase` in your Go project, follow these steps:
99
1. Install the module using the `go get` command:
1010

1111
```bash
12-
go get github.com/DeexithParand2k2/FileEase
12+
go get github.com/deexithparand/FileEase
1313
```
1414

1515

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

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

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

2828
## License
2929

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

3636
## Troubleshooting
3737

38-
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).
38+
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).

examples/example.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66
"path/filepath"
77
"runtime"
88

9-
"github.com/DeexithParand2k2/FileEase/pkg/fileparser"
10-
"github.com/DeexithParand2k2/FileEase/pkg/fileparser/docx"
9+
"github.com/deexithparand/FileEase/pkg/fileparser"
10+
"github.com/deexithparand/FileEase/pkg/fileparser/docx"
1111
)
1212

1313
func main() {

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
module github.com/DeexithParand2k2/FileEase
1+
module github.com/deexithparand/FileEase
22

33
go 1.21.3

pkg/fileparser/docx/docx_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package docx
33
import (
44
"testing"
55

6-
"github.com/DeexithParand2k2/FileEase/pkg/fileparser"
6+
"github.com/deexithparand/FileEase/pkg/fileparser"
77
)
88

99
func TestDocxParser(t *testing.T) {

pkg/fileparser/txt/txt_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package txt
33
import (
44
"testing"
55

6-
"github.com/DeexithParand2k2/FileEase/pkg/fileparser"
6+
"github.com/deexithparand/FileEase/pkg/fileparser"
77
)
88

99
func TestTxtParser(t *testing.T) {

0 commit comments

Comments
 (0)