Skip to content
This repository has been archived by the owner on Jan 17, 2024. It is now read-only.
Nikita edited this page Feb 11, 2019 · 1 revision

Launch In Docker

docker-compose up -d

The application ALog

  • will run on port 8082
  • has 3 POST entry points (/info, /warning, /error)
  • has request struct
type request struct {
	Message string `json:"message"`
}

Example:

POST http://localhost:8082/info

Request

{
	"message": "Hello, ALog!"
}

Response

{
	"code": 201,
	"message": "Created"
}
Clone this wiki locally