This commit is contained in:
StellaOps Bot
2025-12-14 23:20:14 +02:00
parent 3411e825cd
commit b058dbe031
356 changed files with 68310 additions and 1108 deletions

View File

@@ -0,0 +1,30 @@
using System.Text.Json.Serialization;
namespace StellaOps.Signals.Models;
/// <summary>
/// Execution phase for entrypoints.
/// </summary>
[JsonConverter(typeof(JsonStringEnumConverter))]
public enum EntrypointPhase
{
/// <summary>
/// Module/assembly initialization.
/// </summary>
ModuleInit,
/// <summary>
/// Application startup (Main, startup hooks).
/// </summary>
AppStart,
/// <summary>
/// Runtime request handling.
/// </summary>
Runtime,
/// <summary>
/// Shutdown/cleanup handlers.
/// </summary>
Shutdown
}