Current section
Files
Jump to
Current section
Files
lib/trellis3_com.ex
defmodule Trellis3Com do
@moduledoc """
Minimal metadata module for the Trellis 3 website.
"""
@homepage "https://www.trellis3.com"
@summary "Trellis 3 is an AI video generator for image generation and creative art workflows."
@doc "Returns the official Trellis 3 website URL."
def homepage do
@homepage
end
@doc "Returns a short product summary."
def summary do
@summary
end
end