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

https://github.com/kamaln7/tiel

a flexible and performant HTTP service API that takes care of boring scaffolding
https://github.com/kamaln7/tiel

golang http ilovebirds microservice scaffolding

Last synced: about 1 year ago
JSON representation

a flexible and performant HTTP service API that takes care of boring scaffolding

Awesome Lists containing this project

README

          

## 🐦

```go
// error handling omitted //

// Create the tiel instance
t, err := tiel.New(nil, nil)

// Configure routes
t.Get("/", func(w http.ResponseWriter, r *http.Request) {
w.Write([]byte("chirp chirp"))
})

// Start the server
err = t.Sing()
```

```
~ $ curl localhost:3000
chirp chirp
```