Files
compose-projects-arr/stash/config/scrapers/community/rb_common/configs/stashdb_config.rb
Christoph Califice 0a5f88d75a stash
2025-10-10 09:50:30 -03:00

14 lines
291 B
Ruby

# frozen_string_literal: true
require_relative "config_base"
module Config
class StashDB < ConfigBase
# Tweak user settings below. An API Key can be generated in StashDB's user page
USER_CONFIG = {
endpoint: "https://stashdb.org/graphql",
api_key: ""
}
end
end