mirror of
https://github.com/ditkrg/rabbit_carrots.git
synced 2026-01-22 22:06:40 +00:00
13 lines
289 B
Ruby
13 lines
289 B
Ruby
# frozen_string_literal: true
|
|
|
|
require_relative "rabbit_carrots/version"
|
|
require 'rabbit_carrots/connection'
|
|
require 'rabbit_carrots/configuration'
|
|
require 'rabbit_carrots/railtie' if defined?(Rails)
|
|
|
|
|
|
module RabbitCarrots
|
|
class Error < StandardError; end
|
|
# Your code goes here...
|
|
end
|