Packages

Tryveo4AI official website and AI tools platform. Visit https://tryveo4ai.org for more information.

Current section

Files

Jump to
tryveo4ai lib tryveo4ai.ex
Raw

lib/tryveo4ai.ex

defmodule Tryveo4ai do
@moduledoc """
Tryveo4AI official website and AI tools platform.
Visit [https://tryveo4ai.org](https://tryveo4ai.org) for more information.
"""
@version "0.1.0"
@website "https://tryveo4ai.org"
def version, do: @version
def website, do: @website
def info do
%{
name: "Tryveo4AI",
version: @version,
website: @website,
description: "Tryveo4AI official website and AI tools platform."
}
end
def hello do
IO.puts("Welcome! Visit #{@website}")
:ok
end
end