10 lines
99 B
Ruby
10 lines
99 B
Ruby
|
class SyncDb
|
||
|
|
||
|
@queue = :high
|
||
|
|
||
|
def self.perform()
|
||
|
# sleep 10
|
||
|
puts "DB Sync"
|
||
|
end
|
||
|
end
|