Packages

The Ollama Tests Generator is a powerful command-line tool designed to automatically generate unit tests for your code using AI models. This tool supports multiple programming languages and can adapt to your existing testing style, making it a versatile addition to your development workflow.

Retired package: Release invalid - invalid

Current section

Files

Jump to
ollama_tests_generator src ollama_tests_generator_app.erl
Raw

src/ollama_tests_generator_app.erl

%%%-------------------------------------------------------------------
%% @doc ollama_tests_generator public API
%% @end
%%%-------------------------------------------------------------------
-module(ollama_tests_generator_app).
-behaviour(application).
-export([start/2, stop/1]).
start(_StartType, _StartArgs) ->
ollama_tests_generator_sup:start_link().
stop(_State) ->
ok.
%% internal functions