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 <noreply@anthropic.com>
This commit is contained in:
AJ
2026-01-14 07:52:50 -05:00
parent 1358f0136b
commit a4fb40e485
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Options;
using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.Options;
using PepApi.Core.Configuration; using PepApi.Core.Configuration;
using PepApi.Core.Models; using PepApi.Core.Models;
using PepLib; using PepLib;

View File

@@ -4,7 +4,7 @@ using PepLib.Data;
var builder = WebApplication.CreateBuilder(args); var builder = WebApplication.CreateBuilder(args);
// Enable Windows Service hosting // Enable Windows Service hosting
builder.Host.UseWindowsService(); builder.Host.UseWindowsService();