Packages

Cron schedule generator for Elixir.

Current section

Files

Jump to
ex_cron lib ex_cron cron.ex
Raw

lib/ex_cron/cron.ex

defmodule ExCron.Cron do
@moduledoc """
Struct that holds the pieces of a parsed cron string
"""
defstruct [
minutes: [],
hours: [],
days_of_month: [],
months: [],
days_of_week: []
]
end