type Server

type Server interface {
	Start() error
}

Server is an interface to interact with the external API.

A default http server is provided.