-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: update README.md, change shell to sh docs: update README.md docs: update README.md docs: update README.md docs: update README.md squash me baby
- Loading branch information
Showing
4 changed files
with
17 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,57 +1,32 @@ | ||
## fast, async, multithreaded bomber | ||
|
||
### | ||
|
||
<div align="center"> | ||
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/go/go-original.svg" height="200" alt="go logo" /> | ||
<img width="0" /> | ||
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/docker/docker-original.svg" height="200" alt="docker logo" /> | ||
</div> | ||
|
||
### | ||
|
||
### project structure: | ||
|
||
```go | ||
├── cmd | ||
│ └── main.go | ||
├── core | ||
│ ├── email_bomber.go | ||
│ ├── generator.go | ||
│ └── sms_bomber.go | ||
├── Dockerfile | ||
├── go.mod | ||
├── LICENSE | ||
└── README.md | ||
``` | ||
# Fast, async, multithreaded bomber | ||
|
||
## installation | ||
## Installation | ||
|
||
```shell | ||
git clone https://github.com/kenjitheman/tomaranai_bomber | ||
```sh | ||
git clone https://github.com/nezutero/tomaranai_bomber | ||
``` | ||
|
||
## usage | ||
## Usage | ||
|
||
- run it: | ||
- Run it: | ||
|
||
```shell | ||
```sh | ||
cd cmd | ||
go run main.go | ||
``` | ||
|
||
- or run it using docker: | ||
- Or run it using docker: | ||
|
||
```shell | ||
```sh | ||
docker build -t your_image_name . | ||
docker run -d -p 8080:80 your_image_name | ||
``` | ||
|
||
## contributing | ||
## Contributing | ||
|
||
- pull requests are welcome, for major changes, please open an issue first to | ||
discuss what you would like to change | ||
- Pull requests are welcome, for major changes, please open an issue first to | ||
discuss what you would like to change. | ||
|
||
## license | ||
## License | ||
|
||
- [MIT](https://choosealicense.com/licenses/mit/) | ||
- [MIT](./LICENSE) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
module github.com/kenjitheman/tomaranai_bomber | ||
module github.com/nezutero/tomaranai_bomber | ||
|
||
go 1.20 |