bulk-barrage/src/providers/abstract.cr

7 lines
103 B
Crystal
Raw Normal View History

module Providers
abstract class Abstract
abstract def process(email_content : String)
end
end