mirror of
https://github.com/internetee/registry.git
synced 2025-06-12 07:34:45 +02:00
10 lines
232 B
Ruby
10 lines
232 B
Ruby
module Domains
|
|
module ClientHold
|
|
class Base < ActiveInteraction::Base
|
|
def to_stdout(message)
|
|
time = Time.zone.now.utc
|
|
STDOUT << "#{time} - #{message}\n" unless Rails.env.test?
|
|
end
|
|
end
|
|
end
|
|
end
|