1
0
مراية لـ https://github.com/postalserver/postal.git تم المزامنة 2026-03-03 22:34:09 +00:00

use explicit autoloads rather than from paths

هذا الالتزام موجود في:
Adam Cooke
2017-06-02 15:29:54 +01:00
الأصل 9f4568e81a
التزام 6e009f16b9
9 ملفات معدلة مع 87 إضافات و8 حذوفات

12
lib/postal/fast_server.rb Normal file
عرض الملف

@@ -0,0 +1,12 @@
module Postal
module FastServer
extend ActiveSupport::Autoload
eager_autoload do
autoload :Client
autoload :HTTPHeader
autoload :HTTPHeaderSet
autoload :Interface
autoload :Server
end
end
end

18
lib/postal/message_db.rb Normal file
عرض الملف

@@ -0,0 +1,18 @@
module Postal
module MessageDB
extend ActiveSupport::Autoload
eager_autoload do
autoload :Click
autoload :Database
autoload :Delivery
autoload :LiveStats
autoload :Load
autoload :Message
autoload :Migration
autoload :Provisioner
autoload :Statistics
autoload :SuppressionList
autoload :Webhooks
end
end
end

عرض الملف

@@ -0,0 +1,9 @@
module Postal
module SMTPServer
extend ActiveSupport::Autoload
eager_autoload do
autoload :Client
autoload :Server
end
end
end