require "kemal" require "clear" require "stripe" # Routes for user registration, login, and projects CRUD require "./routes/auth" require "./routes/projects" get "/" do "welcome to the management portal" end Kemal.run