Skip to content

Commit

Permalink
Update module name
Browse files Browse the repository at this point in the history
  • Loading branch information
cp-sumi-k committed Jul 28, 2023
1 parent d6e3f32 commit 9f25585
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 10 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ This repository aims to provide a solid scaffolds of foundational tools that enh

- If you want to use email function, install package with:
```
go get github.com/cp-sumi-k/go-scaffolds/email
go get github.com/canopas/go-scaffolds/email
```

## Usage
Expand All @@ -30,20 +30,20 @@ go-scaffolds offers a diverse range of utility functions that cater to various a
package main

import (
"github.com/cp-sumi-k/go-scaffolds/email"
"github.com/canopas/go-scaffolds/email"
)

func main() {
email.SendAWSSESEmail(sess, data)
}
```

For detailed documentation and examples of each function, please refer to the [examples](https://github.com/cp-sumi-k/go-scaffolds/examples).
For detailed documentation and examples of each function, please refer to the [examples](https://github.com/canopas/go-scaffolds/examples).

## Contributions and Feedback

Contributions are highly appreciated! If you find a bug, have a feature request, or want to contribute new functions, feel free to open an issue or submit a pull request.

## License

go-scaffolds is open-source and distributed under the [MIT License](https://github.com/cp-sumi-k/go-scaffolds/blob/main/LICENSE).
go-scaffolds is open-source and distributed under the [MIT License](https://github.com/canopas/go-scaffolds/blob/main/LICENSE).
5 changes: 1 addition & 4 deletions email/go.mod
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
module github.com/cp-sumi-k/go-scaffolds/email
module github.com/canopas/go-scaffolds/email

go 1.20

replace file => ../file

require (
file v0.0.0-00010101000000-000000000000
github.com/aws/aws-sdk-go v1.44.311
github.com/sirupsen/logrus v1.9.3
github.com/stretchr/testify v1.8.4
Expand Down
2 changes: 1 addition & 1 deletion file/go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/cp-sumi-k/go-scaffolds/file
module github.com/canopas/go-scaffolds/file

go 1.20

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/cp-sumi-k/go-scaffolds
module github.com/canopas/go-scaffolds

go 1.20

Expand Down

0 comments on commit 9f25585

Please sign in to comment.