lib/fulmar/service/bootstrap_service.rb in fulmar-1.10.1 vs lib/fulmar/service/bootstrap_service.rb in fulmar-2.0.0

- old
+ new

@@ -1,14 +1,10 @@ module Fulmar module Service # Initializes the rake service and starts it class BootstrapService - def initialize - $logger = Fulmar::Service::LoggerService.new(STDOUT) - end - def fly - Fulmar::Domain::Service::ApplicationService.new.run + Fulmar::Domain::Service::Application.new.run end end end end