Current section
Files
Jump to
Current section
Files
lib/imagine20_com.ex
defmodule Imagine20Com do
@moduledoc """
Minimal metadata module for the Imagine 2.0 website.
"""
@homepage "https://www.imagine20.com"
@summary "Imagine 2.0 is an AI video generator for text-to-video and image-to-video workflows."
@doc "Returns the official Imagine 2.0 website URL."
def homepage do
@homepage
end
@doc "Returns a short product summary."
def summary do
@summary
end
end