defmodule BackgroundRemover do @moduledoc """ Minimal metadata module for the Background Remover AI video generator website. """ @homepage "https://www.seedance2ai.app/tools/background-remover" @summary "Background Remover is an AI video generator for text-to-video and image-to-video workflows." @doc "Returns the official Background Remover website URL." def homepage do @homepage end @doc "Returns a short product summary." def summary do @summary end end