mirror of
https://github.com/jimeh/redistat.git
synced 2026-02-19 13:26:39 +00:00
10 lines
147 B
Ruby
10 lines
147 B
Ruby
module Redistat
|
|
module Database
|
|
def self.included(base)
|
|
base.extend(Database)
|
|
end
|
|
def db
|
|
Redistat.redis
|
|
end
|
|
end
|
|
end |