diff options
author | Indrajith K L | 2024-06-20 23:51:27 +0530 |
---|---|---|
committer | Indrajith K L | 2024-06-20 23:51:27 +0530 |
commit | 11c92db4208efb6381a2fd65bcc4de427d1f21f6 (patch) | |
tree | 7c17454ff8ef59ad75ce2e48afe52815b874bfb1 /src | |
download | indrajith-dev-crystal-11c92db4208efb6381a2fd65bcc4de427d1f21f6.tar.gz indrajith-dev-crystal-11c92db4208efb6381a2fd65bcc4de427d1f21f6.tar.bz2 indrajith-dev-crystal-11c92db4208efb6381a2fd65bcc4de427d1f21f6.zip |
Adds Bare Server
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 |