mirror of
https://github.com/plashchynski/crono.git
synced 2026-04-18 23:19:57 +02: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
|