Skip to content
DocsTry Aspire
DocsTry

EntrypointType

Enumnet10.0
📦 CommunityToolkit.Aspire.Hosting.Perl v13.4.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 EntrypointType
Executable= 0
A direct executable file to run (e.g., a PAR-packed binary or compiled Perl application).
Script= 1
A Perl script file to execute directly (e.g., "main.pl", "app.pl").
Module= 2
A Perl module to run as the main application (e.g., "MyApp::Main").
API= 3
A Perl API script to listen for HTTP requests.