diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/indrajith-dev-crystal.cr | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/indrajith-dev-crystal.cr b/src/indrajith-dev-crystal.cr new file mode 100644 index 0000000..a7a08b6 --- /dev/null +++ b/src/indrajith-dev-crystal.cr @@ -0,0 +1,11 @@ +require "kemal" + +module Indrajith::Dev::Crystal + VERSION = "0.1.0" + + get "/" do + "Hello World!" + end + + Kemal.run +end |