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

https://github.com/roundpartner/seq

A Task Queue In Go
https://github.com/roundpartner/seq

go

Last synced: 10 months ago
JSON representation

A Task Queue In Go

Awesome Lists containing this project

README

          

# SEQ
A Task Queue In Go
## Compiling
```bash
go build
```

## Running
```bash
./seq
```

## Usage

```bash
curl http://0.0.0.0:6060 -X POST -d "\"hello world\""
```

```bash
curl http://0.0.0.0:6060
```

> [{"id":1,"body":"hello world"}]

```bash
curl http://0.0.0.0:6060/1 -X DELETE
```