Skip to content

Commit

Permalink
⏪️ Revert changes to organised import statements
Browse files Browse the repository at this point in the history
  • Loading branch information
Lamparter authored Sep 5, 2024
1 parent beb88cd commit d04f6bc
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions src/FluentHub.Octokit/GlobalUsings.cs
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;

0 comments on commit d04f6bc

Please sign in to comment.