mirror of
https://gitea.invidious.io/iv-org/shard-kemal.git
synced 2024-08-15 00:53:36 +00:00
9 lines
108 B
Crystal
9 lines
108 B
Crystal
require "kemal/base"
|
|
|
|
class MyApp < Kemal::Application
|
|
get "/" do
|
|
"Hello Kemal!"
|
|
end
|
|
end
|
|
|
|
MyApp.run
|