EntrypointType
Enum net10.0
Defines the type of entrypoint for a Perl application. Supported entrypoint types currently include Script, API, Module, and Executable.
namespace CommunityToolkit.Aspire.Hosting.Perl;
public enum EntrypointTypeEnum Members
Section titled Enum MembersExecutableA direct executable file to run (e.g., a PAR-packed binary or compiled Perl application).
ScriptA Perl script file to execute directly (e.g., "main.pl", "app.pl").
ModuleA Perl module to run as the main application (e.g., "MyApp::Main").
APIA Perl API script to listen for HTTP requests.