Packages

GTFS tools for the time being for Elixir applications.

Current section

Files

Jump to
transit lib gtfs calendar_date.ex
Raw

lib/gtfs/calendar_date.ex

defmodule GTFS.CalendarDate do
@enforce_keys [:service_id, :date, :exception_type]
# https://developers.google.com/transit/gtfs/reference/#calendar_datestxt
defstruct ~w(
service_id
date
exception_type
)a
end