Skip to content

Commit

Permalink
docs: Improve README
Browse files Browse the repository at this point in the history
  • Loading branch information
love98ooo committed Apr 8, 2024
1 parent bbbbf32 commit 8dbc1aa
Showing 1 changed file with 45 additions and 1 deletion.
46 changes: 45 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,48 @@

A package to bypass ouo.io and ouo.press link shortener.

Inspired by [ouo-bypass](https://github.com/xcscxr/ouo-bypass)
## Features

- Bypass reCAPTCHA v3.
- Bypass ouo.io and ouo.press link shortener.

## Installation

``` bash
go get github.com/love98ooo/ouo-bypass-go
```

## Usage

``` go
import (
"fmt"
ouoBypass "github.com/love98ooo/ouo-bypass-go"
)

func main() {
url := "https://ouo.io/xxxxxx"
bypassedURL, err := ouoBypass.Resolve(url)
if err != nil {
fmt.Println(err)
} else {
fmt.Println(bypassedURL)
}
}
```

## Contributing

Issue and PR welcome.

## Acknowledgement

ouo-bypass-go is inspired by the following projects and so on:

- [ouo-bypass](https://github.com/xcscxr/ouo-bypass)

## License

This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

0 comments on commit 8dbc1aa

Please sign in to comment.