mirror of
https://github.com/donl/gPanel.git
synced 2026-05-26 06:12:20 -06:00
| .. | ||
| delete.go | ||
| read.go | ||
| README.md | ||
Log API Documentation
/*
Relative API Path:
api/log/read
Request:
{
"name": string
}
Response(200, 404, 405):
[log contents]
*/
func Read(res http.ResponseWriter, req *http.Request) bool {}
/*
Relative API Path:
api/log/delete
Request:
{
"name": string
}
Response(204, 404, 405):
N/A
*/
func Delete(res http.ResponseWriter, req *http.Request) bool {}