-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
⏪️ Revert changes to organised import statements
- Loading branch information
Showing
1 changed file
with
12 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,23 @@ | ||
// Copyright (c) 2022-2024 0x5BFA | ||
// Licensed under the MIT License. See the LICENSE. | ||
|
||
global using global::FluentHub.Octokit.Models.v3; | ||
global using global::FluentHub.Octokit.Models.v4; | ||
global using global::FluentHub.Octokit.Models.v4Custom; | ||
global using global::Humanizer; | ||
global using global::Newtonsoft.Json; | ||
global using global::Newtonsoft.Json.Converters; | ||
global using global::Octokit.GraphQL; | ||
// Default usings | ||
global using global::System; | ||
global using global::System.Collections.Generic; | ||
global using global::System.Linq; | ||
global using global::System.Linq.Expressions; | ||
global using global::System.Runtime.Serialization; | ||
global using global::System.Text; | ||
global using global::System.Threading.Tasks; | ||
global using global::Newtonsoft.Json; | ||
global using global::Newtonsoft.Json.Converters; | ||
|
||
// Custom usings | ||
global using global::FluentHub.Octokit.Models.v3; | ||
global using global::FluentHub.Octokit.Models.v4; | ||
global using global::FluentHub.Octokit.Models.v4Custom; | ||
global using global::Humanizer; | ||
global using global::Octokit.GraphQL; | ||
global using OctokitV3 = global::Octokit; | ||
global using OctokitGraphQLCore = global::Octokit.GraphQL.Core; | ||
global using OctokitGraphQLModel = global::Octokit.GraphQL.Model; | ||
global using OctokitV3 = global::Octokit; |