15 lines
		
	
	
		
			246 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			246 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| module Devops
 | |
|   module Application
 | |
|     class DevopsClientApplication < Application
 | |
| 
 | |
|       def prepare
 | |
|         require "app/client/devops-client"
 | |
|       end
 | |
| 
 | |
|       def routes
 | |
|         Routes.route "/client", ::Client.new
 | |
|       end
 | |
|     end
 | |
|   end
 | |
| end
 | 
