Skip to content

Commit

Permalink
Move global usings to its own file
Browse files Browse the repository at this point in the history
  • Loading branch information
RobinTTY committed Oct 14, 2024
1 parent 30d62b4 commit 0e7edac
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
global using System;
global using System.Linq;
global using System.Threading;
global using System.Collections.Generic;
global using System.Threading.Tasks;
global using Serilog;
global using HotChocolate;
7 changes: 0 additions & 7 deletions src/server/RobinTTY.PersonalFinanceDashboard.API/Program.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
global using System;
global using System.Linq;
global using System.Threading;
global using System.Collections.Generic;
global using System.Threading.Tasks;
global using Serilog;
global using HotChocolate;
using Microsoft.AspNetCore.Builder;
using RobinTTY.PersonalFinanceDashboard.Api.Extensions;

Expand Down

0 comments on commit 0e7edac

Please sign in to comment.