Add more docstrings

This commit is contained in:
gg 2023-07-28 22:37:00 -07:00
parent 9e9eee0712
commit 19cbd64897
1 changed files with 11 additions and 0 deletions

View File

@ -74,10 +74,21 @@ function get_schedule(zone)
return map(massage_fn(zone, s[1][:hour] == "00:00"), s)
end
"""
Fetch the weathernews schedule and translate segment dates to the local time zone.
# Examples
```jldoctest
julia> s = WeatherNews.get_schedule()
```
"""
function get_schedule()
get_schedule(localzone())
end
"""
The DB module contains code for managing the schedule database.
"""
module DB
include("./db.jl")
end