neopoly/rohbau

View on GitHub
examples/user_service/runtime.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'rohbau/runtime'
require 'rohbau/runtime_loader'

module UserService
  class RuntimeLoader < Rohbau::RuntimeLoader
    def initialize
      super(Runtime)
    end
  end

  class Runtime < Rohbau::Runtime
  end
end