mirror of
https://github.com/jimeh/redistat.git
synced 2026-02-19 13:26:39 +00:00
13 lines
188 B
Ruby
13 lines
188 B
Ruby
module Redistat
|
|
class Model
|
|
|
|
def self.create(*args)
|
|
Event.new(self.name, self.options, *args)
|
|
end
|
|
|
|
def self.options
|
|
@options ||= {}
|
|
end
|
|
|
|
end
|
|
end |