From a4fb40e48597c7d2dafb9b1c486dfb373954d2ae Mon Sep 17 00:00:00 2001 From: AJ Date: Wed, 14 Jan 2026 07:52:50 -0500 Subject: [PATCH] style(PepApi.Core): reorder using directives and fix whitespace Alphabetize using directives in NestsController and remove extra blank line in Program.cs. Co-Authored-By: Claude Opus 4.5 --- PepApi.Core/Controllers/NestsController.cs | 2 +- PepApi.Core/Program.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/PepApi.Core/Controllers/NestsController.cs b/PepApi.Core/Controllers/NestsController.cs index c730c78..9b0c00c 100644 --- a/PepApi.Core/Controllers/NestsController.cs +++ b/PepApi.Core/Controllers/NestsController.cs @@ -1,6 +1,6 @@ using Microsoft.AspNetCore.Mvc; -using Microsoft.Extensions.Options; using Microsoft.EntityFrameworkCore; +using Microsoft.Extensions.Options; using PepApi.Core.Configuration; using PepApi.Core.Models; using PepLib; diff --git a/PepApi.Core/Program.cs b/PepApi.Core/Program.cs index 55dab16..ec941a7 100644 --- a/PepApi.Core/Program.cs +++ b/PepApi.Core/Program.cs @@ -4,7 +4,7 @@ using PepLib.Data; var builder = WebApplication.CreateBuilder(args); - + // Enable Windows Service hosting builder.Host.UseWindowsService();