From 447dd79d20726b5aaf2adc16f519b2bfaf3e7526 Mon Sep 17 00:00:00 2001 From: eliasjpr Date: Mon, 7 Oct 2024 21:07:47 -0400 Subject: [PATCH] Add missing newline after imports Improved the code readability and styling consistency by adding a newline after the import statements. This enhances the separation between the imports and the module definition, adhering to common coding practices and improving maintainability. No functionality is affected by this change. --- src/authly.cr | 1 + 1 file changed, 1 insertion(+) diff --git a/src/authly.cr b/src/authly.cr index e96e236..e9edab4 100644 --- a/src/authly.cr +++ b/src/authly.cr @@ -5,6 +5,7 @@ require "./authly/authorizable_client" require "./authly/jti_provider" require "./authly/**" require "log" + module Authly CONFIG = Configuration.new