mirror of
https://gitea.invidious.io/iv-org/shard-kemal.git
synced 2024-08-15 00:53:36 +00:00
17 lines
242 B
Crystal
17 lines
242 B
Crystal
require "../src/kemal/base"
|
|
|
|
class MyApp < Kemal::Application
|
|
get "/" do |env|
|
|
"Hello Kemal!"
|
|
end
|
|
end
|
|
|
|
class OtherApp < Kemal::Application
|
|
get "/" do |env|
|
|
"Hello World!"
|
|
end
|
|
end
|
|
|
|
spawn { MyApp.run(3002) }
|
|
|
|
OtherApp.run(3001)
|