aboutsummaryrefslogtreecommitdiff
path: root/src/indrajith-dev-crystal.cr
blob: a7a08b6b1ff04a87daac59f82289e9ea4cea3346 (plain)
1
2
3
4
5
6
7
8
9
10
11
require "kemal"

module Indrajith::Dev::Crystal
  VERSION = "0.1.0"

  get "/" do
    "Hello World!"
  end
  
  Kemal.run
end