Add naive impl of seeding alerts

This commit is contained in:
2025-10-08 01:58:44 -07:00
parent fe0c04b971
commit a31a4413f3
5 changed files with 32 additions and 0 deletions

View File

@@ -7,6 +7,10 @@ class NpsClient
conn.get('parks', { start: offset })
end
def alerts(park_code:, offset: 0)
conn.get('alerts', { parkCode: park_code, start: offset })
end
private
def conn