File tree Expand file tree Collapse file tree 4 files changed +18
-17
lines changed
DataPipelineTools.Functions Expand file tree Collapse file tree 4 files changed +18
-17
lines changed Original file line number Diff line number Diff line change 1
- using SqlCollaborative . Azure . DataPipelineTools . DataLake . Model ;
2
- using Microsoft . Extensions . Logging ;
1
+ using Microsoft . Extensions . Logging ;
3
2
using Newtonsoft . Json . Linq ;
4
3
using SqlCollaborative . Azure . DataPipelineTools . Common ;
4
+ using SqlCollaborative . Azure . DataPipelineTools . DataLake . Model ;
5
5
6
- namespace SqlCollaborative . Azure . DataPipelineTools . Functions
6
+ namespace SqlCollaborative . Azure . DataPipelineTools . Functions . Common
7
7
{
8
8
public abstract class FunctionsBase
9
9
{
Original file line number Diff line number Diff line change 1
- using SqlCollaborative . Azure . DataPipelineTools . DataLake ;
2
- using Microsoft . Azure . Functions . Extensions . DependencyInjection ;
1
+ using Microsoft . Azure . Functions . Extensions . DependencyInjection ;
3
2
using Microsoft . Extensions . DependencyInjection ;
3
+ using SqlCollaborative . Azure . DataPipelineTools . DataLake ;
4
+ using SqlCollaborative . Azure . DataPipelineTools . Functions . Common ;
5
+ using SqlCollaborative . Azure . DataPipelineTools . Functions . DataLake ;
4
6
5
- [ assembly: FunctionsStartup ( typeof ( SqlCollaborative . Azure . DataPipelineTools . Functions . Startup ) ) ]
6
- namespace SqlCollaborative . Azure . DataPipelineTools . Functions
7
+ [ assembly: FunctionsStartup ( typeof ( Startup ) ) ]
8
+ namespace SqlCollaborative . Azure . DataPipelineTools . Functions . Common
7
9
{
8
10
public class Startup : FunctionsStartup
9
11
{
Original file line number Diff line number Diff line change 1
- using SqlCollaborative . Azure . DataPipelineTools . DataLake . Model ;
1
+ using System . Collections . Generic ;
2
+ using System . IO ;
3
+ using System . Linq ;
2
4
using Microsoft . AspNetCore . Http ;
3
5
using Microsoft . Extensions . Logging ;
4
6
using Microsoft . Extensions . Primitives ;
5
7
using Newtonsoft . Json ;
6
- using System ;
7
- using System . Collections . Generic ;
8
- using System . IO ;
9
- using System . Linq ;
10
- using System . Text ;
11
8
using SqlCollaborative . Azure . DataPipelineTools . Common ;
9
+ using SqlCollaborative . Azure . DataPipelineTools . DataLake . Model ;
12
10
13
- namespace SqlCollaborative . Azure . DataPipelineTools . Functions
11
+ namespace SqlCollaborative . Azure . DataPipelineTools . Functions . DataLake
14
12
{
15
13
public class DataLakeConfigFactory
16
14
{
Original file line number Diff line number Diff line change 1
1
using System ;
2
+ using System . Linq ;
2
3
using System . Threading . Tasks ;
4
+ using Microsoft . AspNetCore . Http ;
3
5
using Microsoft . AspNetCore . Mvc ;
4
6
using Microsoft . Azure . WebJobs ;
5
7
using Microsoft . Azure . WebJobs . Extensions . Http ;
6
- using Microsoft . AspNetCore . Http ;
7
8
using Microsoft . Extensions . Logging ;
8
- using System . Linq ;
9
9
using SqlCollaborative . Azure . DataPipelineTools . DataLake ;
10
+ using SqlCollaborative . Azure . DataPipelineTools . Functions . Common ;
10
11
11
- namespace SqlCollaborative . Azure . DataPipelineTools . Functions
12
+ namespace SqlCollaborative . Azure . DataPipelineTools . Functions . DataLake
12
13
{
13
14
public partial class DataLakeFunctions : FunctionsBase
14
15
{
You can’t perform that action at this time.
0 commit comments