module Devops module Version2_0 module Routes module StatusRoutes def self.registered(app) app.get "/status/:id", &Devops::Version2_0::Handler::Status.get_status puts "Status routes initialized" end end end end end