# Packages
No description provided by the author
# Functions
HandleAddJob takes a job object and unmarshals it to a Job type, and then throws the job in the schedulers.
HandleDeleteAllJobs is the handler for deleting all jobs DELETE /api/v1/job/all.
HandleDisableJobRequest is the handler for mdisabling jobs /api/v1/job/disable/{id}.
HandleEnableJobRequest is the handler for enable jobs /api/v1/job/enable/{id}.
HandleJobRequest routes requests to /api/v1/job/{id} to either handleDeleteJob if its a DELETE or handleGetJob if its a GET request.
HandleKalaStatsRequest is the handler for getting system-level metrics /api/v1/stats.
HandleListJobs responds with an array of all Jobs within the server, active or disabled.
HandleListJobStatsRequest is the handler for getting job-specific stats /api/v1/job/stats/{id}.
HandleStartJobRequest is the handler for manually starting jobs /api/v1/job/start/{id}.
No description provided by the author
SetupApiRoutes is used within main to initialize all of the routes.
# Constants
No description provided by the author
Base API v1 Path.
No description provided by the author
# Structs
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author