mirror of
https://github.com/holidayapi/holidayapi-go.git
synced 2025-11-13 08:38:30 +00:00
Official Go library for Holiday API
https://holidayapi.com
|
|
||
|---|---|---|
| .gitignore | ||
| holidayapi.go | ||
| holidayapi_test.go | ||
| LICENSE | ||
| models.go | ||
| README.md | ||
go-holidayapi
Official Go library for Holiday API
Usage
package main
import (
"fmt"
"github.com/joshtronic/go-holidayapi"
)
func main() {
hapi := holidayapi.NewV1("_MY_API_KEY_")
holidays, err := hapi.Holidays(map[string]interface{}{
// Required
"country": "US",
"year": "2016",
// Optional
// "month": "7",
// "day": "4",
// "previous": "true",
// "upcoming": "true",
// "public": "true",
// "pretty": "true",
})
if err != nil {
// Error handling...
}
fmt.Println("%#v\n", holidays)
}