mirror of
https://github.com/System-End/theseus.git
synced 2026-04-19 21:05:10 +00:00
5 lines
152 B
Ruby
5 lines
152 B
Ruby
class EasyPostService
|
|
def self.client
|
|
@client ||= EasyPost::Client.new(api_key: Rails.application.credentials.dig(:easypost, :api_key))
|
|
end
|
|
end
|