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