Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kingster/go-urlshortner

A simple golang based url shortner
https://github.com/kingster/go-urlshortner

Last synced: about 2 months ago
JSON representation

A simple golang based url shortner

Awesome Lists containing this project

README

        

# go-urlshortner
A simple golang based url shortner

# How to use

```bash
## Shorten

curl --location 'localhost:9090/shorten' \
--header 'Content-Type: application/json' \
--data '{
"url" : "github.com/labstack/echo"
}'

## Expand

curl --location 'localhost:9090/resolve/H2eBb6CN'

```