module JamRuby
module S3ManagerMixin
extend ActiveSupport::Concern
include AppConfig
included do
end
module ClassMethods
def s3_manager
@s3_manager ||= S3Manager.new(app_config.aws_bucket, app_config.aws_access_key_id, app_config.aws_secret_access_key)