repositorypackage
1.0.0
Repository: https://github.com/flawiddsouza/logger.git
Documentation: pkg.go.dev
# README
Dev (Run)
go run main.go
Prod (Build)
cd ui
npm run build
cd ..
go build -o dist/logger
Prod (Run)
./dist/logger
Usage
Store Log:
POST http://localhost:4964/log
{
"group": "a",
"stream": "b",
"timestamp": "c",
"message": "d"
}
Retrieve Log:
GET http://localhost:4964/log?group=a&stream=b
[
{
"timestamp": "c",
"message": "d"
},
{
"timestamp": "c",
"message": "d"
},
{
"timestamp": "c",
"message": "d"
}
]