deliveroo/routemaster

View on GitHub
routemaster/mixins/counters.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'routemaster/mixins'
require 'routemaster/models/counters'

module Routemaster
  module Mixins
    module Counters
      protected

      def _counters
        Models::Counters.instance
      end
    end
  end
end