Packages
kling4_app
0.1.0
Kling 4.0 AI Video Generator Free Online. Visit https://www.kling4.app for more information.
Current section
Files
Jump to
Current section
Files
lib/kling4_app.ex
defmodule Kling4App do
@moduledoc """
Kling 4.0 AI Video Generator Free Online.
Visit [https://www.kling4.app](https://www.kling4.app) for more information.
"""
@version "0.1.0"
@website "https://www.kling4.app"
def version, do: @version
def website, do: @website
def info do
%{
name: "Kling 4.0",
version: @version,
website: @website,
description: "Kling 4.0 AI Video Generator Free Online."
}
end
def hello do
IO.puts("Welcome! Visit #{@website}")
:ok
end
end