exe/osa in osa-0.1.0 vs exe/osa in osa-0.1.1

- old
+ new

@@ -1,15 +1,16 @@ #!/usr/bin/env ruby +# frozen_string_literal: true require 'osa/services/setup_service' require 'osa/services/auth_service' cmd = $ARGV.shift case cmd when 'setup' OSA::SetupService.new.setup! when 'login' - OSA::AuthService.login(Config.first || Config.new) + OSA::AuthService.login(OSA::Config.first || OSA::Config.new) when 'scan-junk' require 'osa/scripts/scan_junk_folder' when 'scan-report' require 'osa/scripts/scan_report_folder' else