Awesome
<h1 align="center">Joe Bot - HTTP Server</h1> <p align="center">Providing HTTP integrations for Joe. https://github.com/go-joe/joe</p> <p align="center"> <a href="https://github.com/go-joe/http-server/releases"><img src="https://img.shields.io/github/tag/go-joe/http-server.svg?label=version&color=brightgreen"></a> <a href="https://circleci.com/gh/go-joe/http-server/tree/master"><img src="https://circleci.com/gh/go-joe/http-server/tree/master.svg?style=shield"></a> <a href="https://goreportcard.com/report/github.com/go-joe/http-server"><img src="https://goreportcard.com/badge/github.com/go-joe/http-server"></a> <a href="https://codecov.io/gh/go-joe/http-server"><img src="https://codecov.io/gh/go-joe/http-server/branch/master/graph/badge.svg"/></a> <a href="https://pkg.go.dev/github.com/go-joe/http-server?tab=doc"><img src="https://img.shields.io/badge/godoc-reference-blue.svg?color=blue"></a> <a href="https://github.com/go-joe/http-server/blob/master/LICENSE"><img src="https://img.shields.io/badge/license-BSD--3--Clause-blue.svg"></a> </p>This repository contains a module for the Joe Bot library.
Getting Started
This library is packaged as Go module. You can get it via:
go get github.com/go-joe/http-server
Example usage
In order to let your bot listen to HTTP requests you should pass the http.Server(…)
module when creating a new bot:
package main
import (
"github.com/go-joe/joe"
"github.com/go-joe/http-server"
)
func main() {
b := joe.New("example-bot",
joehttp.Server("localhost:12345"),
…
)
err := b.Run()
if err != nil {
b.Logger.Fatal(err.Error())
}
}
When the server receives a request, it will emit it to the bots brain as joehttp.RequestEvent
.
Built With
Contributing
If you want to hack on this repository, please read the short CONTRIBUTING.md guide first.
Versioning
We use SemVer for versioning. For the versions available, see the tags on this repository.
Authors
- Friedrich Große - Initial work - fgrosse
See also the list of contributors who participated in this project.
License
This project is licensed under the BSD-3-Clause License - see the LICENSE file for details.