This commit is contained in:
Christoph Califice
2025-10-09 20:05:31 -03:00
parent ed22ef22bc
commit 0a5f88d75a
1442 changed files with 101562 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
# frozen_string_literal: true
class ConfigBase
class << self
def endpoint
return nil unless self::USER_CONFIG[:endpoint]
self::USER_CONFIG[:endpoint]
end
def api_key
return nil unless self::USER_CONFIG[:api_key]
self::USER_CONFIG[:api_key]
end
end
end