diff options
| author | ivarlovlie <git@ivarlovlie.no> | 2022-01-22 22:43:38 +0100 |
|---|---|---|
| committer | ivarlovlie <git@ivarlovlie.no> | 2022-01-22 22:43:38 +0100 |
| commit | 88110f536f9c3843ecf5016122e101f8a424af77 (patch) | |
| tree | e8be4e77ccfb5ad37f49f89adad59ff12b4c85ea /src/server/GlobalUsings.cs | |
| download | bookmark-thing-88110f536f9c3843ecf5016122e101f8a424af77.tar.xz bookmark-thing-88110f536f9c3843ecf5016122e101f8a424af77.zip | |
Initial commit
Diffstat (limited to 'src/server/GlobalUsings.cs')
| -rw-r--r-- | src/server/GlobalUsings.cs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/server/GlobalUsings.cs b/src/server/GlobalUsings.cs new file mode 100644 index 0000000..882de1c --- /dev/null +++ b/src/server/GlobalUsings.cs @@ -0,0 +1,23 @@ +global using System.Security.Claims; +global using System.Text.Json; +global using System.Text.Json.Serialization; +global using Swashbuckle.AspNetCore.SwaggerGen; +global using Serilog; +global using Microsoft.AspNetCore.Mvc.Versioning; +global using IOL.Helpers; +global using IOL.BookmarkThing.Server.Models.General; +global using IOL.BookmarkThing.Server.Models.Result; +global using IOL.BookmarkThing.Server.Models.Database; +global using IOL.BookmarkThing.Server.Api; +global using IOL.BookmarkThing.Server.StaticData; +global using IOL.BookmarkThing.Server.Utilities; +global using IOL.BookmarkThing.Server.Api.V1; +global using Microsoft.OpenApi.Models; +global using Microsoft.AspNetCore.Authentication; +global using Microsoft.AspNetCore.Authorization; +global using Microsoft.AspNetCore.Mvc; +global using Microsoft.AspNetCore.Authentication.Cookies; +global using Microsoft.AspNetCore.DataProtection; +global using Microsoft.EntityFrameworkCore; +global using Microsoft.AspNetCore.Mvc.ApiExplorer; +global using Microsoft.AspNetCore.Mvc.Controllers; |
