aboutsummaryrefslogtreecommitdiff
path: root/src/indrajith-dev-crystal.cr
diff options
context:
space:
mode:
authorIndrajith K L2024-06-20 23:51:27 +0530
committerIndrajith K L2024-06-20 23:51:27 +0530
commit11c92db4208efb6381a2fd65bcc4de427d1f21f6 (patch)
tree7c17454ff8ef59ad75ce2e48afe52815b874bfb1 /src/indrajith-dev-crystal.cr
downloadindrajith-dev-crystal-11c92db4208efb6381a2fd65bcc4de427d1f21f6.tar.gz
indrajith-dev-crystal-11c92db4208efb6381a2fd65bcc4de427d1f21f6.tar.bz2
indrajith-dev-crystal-11c92db4208efb6381a2fd65bcc4de427d1f21f6.zip
Adds Bare Server
Diffstat (limited to 'src/indrajith-dev-crystal.cr')
-rw-r--r--src/indrajith-dev-crystal.cr11
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