package
0.0.0-20181016143655-c683906c508e
Repository: https://github.com/kentonh/gpanel.git
Documentation: pkg.go.dev

# README

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 {}

# Functions

Read function is accessed from api/logs/read and will attempt to read a given log based off of the request data.
Delete function is accessed from api/logs/delete and will attempt to delete a given log based off of request data.

# Constants

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author