chore: align ark-suac app and refresh appstore zip

This commit is contained in:
Joachim Friberg
2026-03-23 21:23:16 +01:00
parent 9c4265b429
commit 9c5ea400fb
36 changed files with 1611 additions and 3 deletions
@@ -0,0 +1,5 @@
module AsaCtrl
module Errors
class BaseError < StandardError; end
end
end
@@ -0,0 +1,5 @@
require_relative './base_error.rb'
require_relative './mod_already_enabled_error.rb'
require_relative './rcon_authentication_error.rb'
require_relative './rcon_password_not_found_error.rb'
require_relative './rcon_port_not_found_error.rb'
@@ -0,0 +1,5 @@
module AsaCtrl
module Errors
class ModAlreadyEnabledError < BaseError; end
end
end
@@ -0,0 +1,5 @@
module AsaCtrl
module Errors
class RconAuthenticationError < BaseError; end
end
end
@@ -0,0 +1,5 @@
module AsaCtrl
module Errors
class RconPasswordNotFoundError < BaseError; end
end
end
@@ -0,0 +1,5 @@
module AsaCtrl
module Errors
class RconPortNotFoundError < BaseError; end
end
end