File tree Expand file tree Collapse file tree 5 files changed +7
-7
lines changed
DevProxy.Abstractions/Data
DevProxy.Plugins/Guidance Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 22// The .NET Foundation licenses this file to you under the MIT license.
33// See the LICENSE file in the project root for more information.
44
5+ using DevProxy . Abstractions . Utils ;
56using Microsoft . Data . Sqlite ;
67using Microsoft . Extensions . Logging ;
78using Microsoft . OpenApi . Models ;
89using Microsoft . OpenApi . Readers ;
910
10- namespace DevProxy . Abstractions . Utils ;
11+ namespace DevProxy . Abstractions . Data ;
1112
1213public sealed class MSGraphDb ( HttpClient httpClient , ILogger < MSGraphDb > logger ) : IDisposable
1314{
Original file line number Diff line number Diff line change 22// The .NET Foundation licenses this file to you under the MIT license.
33// See the LICENSE file in the project root for more information.
44
5+ using DevProxy . Abstractions . Data ;
56using DevProxy . Abstractions . Proxy ;
67using DevProxy . Abstractions . Plugins ;
78using DevProxy . Abstractions . Utils ;
89using Microsoft . Extensions . Logging ;
9- using Titanium . Web . Proxy . EventArguments ;
1010using System . Globalization ;
11+ using Titanium . Web . Proxy . EventArguments ;
1112
1213namespace DevProxy . Plugins . Guidance ;
1314
Original file line number Diff line number Diff line change 22// The .NET Foundation licenses this file to you under the MIT license.
33// See the LICENSE file in the project root for more information.
44
5- using DevProxy . Abstractions . Utils ;
5+ using DevProxy . Abstractions . Data ;
66using System . CommandLine ;
77
88namespace DevProxy . Commands ;
99
1010sealed class MsGraphDbCommand : Command
1111{
12- private readonly ILogger _logger ;
1312 private readonly MSGraphDb _msGraphDb ;
1413
15- public MsGraphDbCommand ( ILogger < MsGraphDbCommand > logger , MSGraphDb msGraphDb ) :
14+ public MsGraphDbCommand ( MSGraphDb msGraphDb ) :
1615 base ( "msgraphdb" , "Generate a local SQLite database with Microsoft Graph API metadata" )
1716 {
18- _logger = logger ;
1917 _msGraphDb = msGraphDb ;
2018 ConfigureCommand ( ) ;
2119 }
Original file line number Diff line number Diff line change 33// See the LICENSE file in the project root for more information.
44
55using DevProxy ;
6+ using DevProxy . Abstractions . Data ;
67using DevProxy . Abstractions . LanguageModel ;
78using DevProxy . Abstractions . Proxy ;
8- using DevProxy . Abstractions . Utils ;
99using DevProxy . Commands ;
1010using DevProxy . Proxy ;
1111
You can’t perform that action at this time.
0 commit comments