Skip to content

Commit

Permalink
docs: update README.md
Browse files Browse the repository at this point in the history
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
nezutero committed Aug 14, 2024
1 parent d6411de commit 72b3dea
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 42 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2023 kenjitheman
Copyright (c) 2023 nezutero

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
53 changes: 14 additions & 39 deletions README.md
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)
2 changes: 1 addition & 1 deletion cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"fmt"

"github.com/kenjitheman/tomaranai_bomber/core"
"github.com/nezutero/tomaranai_bomber/core"
)

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/kenjitheman/tomaranai_bomber
module github.com/nezutero/tomaranai_bomber

go 1.20

0 comments on commit 72b3dea

Please sign in to comment.