mirror of
https://github.com/plashchynski/crono.git
synced 2026-03-22 01:19:55 +01:00
12 lines
148 B
Ruby
12 lines
148 B
Ruby
module Periodicity
|
|
class Config
|
|
include Singleton
|
|
|
|
attr_accessor :schedule
|
|
|
|
def initialize
|
|
self.schedule = []
|
|
end
|
|
end
|
|
end
|