11 lines
213 B
Ruby
11 lines
213 B
Ruby
# frozen_string_literal: true
|
|
|
|
Rails.application.routes.draw do
|
|
root 'counter#show'
|
|
|
|
get '/cluster', to: 'cluster#show'
|
|
post '/cluster', to: 'cluster#create'
|
|
|
|
get '/cluster/:uuid', to: 'counter#show'
|
|
end
|