Packages

gpt-image-2.app website backlink helper. Visit https://www.gpt-image-2.app for more information.

Current section

Files

Jump to
gpt_image_2_app lib gpt_image_2_app.ex
Raw

lib/gpt_image_2_app.ex

defmodule GptImage2App do
@moduledoc """
gpt-image-2.app website backlink helper package.
Visit [https://www.gpt-image-2.app](https://www.gpt-image-2.app) for more information.
"""
@version "0.1.0"
@website "https://www.gpt-image-2.app"
def version, do: @version
def website, do: @website
def info do
%{
name: "GptImage2App",
version: @version,
website: @website,
description: "gpt-image-2.app website backlink helper package."
}
end
def hello do
IO.puts("Welcome! Visit ")
:ok
end
end