16 lines
401 B
Markdown
16 lines
401 B
Markdown
|
This is little library to operate with bank holidays in Poland.
|
||
|
|
||
|
```go
|
||
|
|
||
|
import "git.ma-al.com/goc_marek/holidayspl"
|
||
|
|
||
|
holidays := holidayspl.New()
|
||
|
|
||
|
// to get list of all holidays
|
||
|
holidays.GetHolidaysList(d.Year())
|
||
|
|
||
|
// get holiday by date or false as second returned value
|
||
|
hh, ok := holidays.GetByDate(time.Date(2024, time.March, 31, 0, 0, 0, 0, time.UTC))
|
||
|
|
||
|
```
|
||
|
For more info just look at th tests file.
|