modulepackage
0.0.0-20240814220244-3379c8f65479
Repository: https://github.com/kdizzle8d8/grizzlyapi.git
Documentation: pkg.go.dev
# README
#GrizzlyAPI
A W.I.P RestfulAPI written in Golang with the Echo framework for Grand Oaks Highschool
To run
go mod tidy && go run main.go
Endpoints:
Orange/Blue Calendar
http://localhost:8000/date/:month/:day
Returns a JSON object representing the 'type' of day of the given date blue
, orange
, or no school
Example usage:
fetch("http://localhost:8000/date/12/4")
Returns
{
"date": "12/4",
"type": "Blue"
}