mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-15 20:05:13 +02:00
9 lines
141 B
Ruby
9 lines
141 B
Ruby
|
|
require 'sinatra'
|
||
|
|
|
||
|
|
get '/create' do
|
||
|
|
class_name = params[:type]
|
||
|
|
klass = class_name.constantize
|
||
|
|
instance = klass.new
|
||
|
|
instance.to_s
|
||
|
|
end
|