Current section
Files
Jump to
Current section
Files
lib/suno_v6_com.ex
defmodule SunoV6Com do
@moduledoc """
Minimal metadata module for the Suno V6 AI music generator website.
"""
@homepage "https://www.suno-v6.com"
@summary "Suno V6 is an AI music generator for prompts, lyrics, and moods into original songs and background tracks."
@doc "Returns the official Suno V6 website URL."
def homepage do
@homepage
end
@doc "Returns a short product summary."
def summary do
@summary
end
end