Skip to content

Commit

Permalink
Add copyright
Browse files Browse the repository at this point in the history
  • Loading branch information
tuliren committed Jun 8, 2022
1 parent 4083ef8 commit 932125e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
* Copyright (c) 2022 Airbyte, Inc., all rights reserved.
*/

package io.airbyte.integrations.base.adaptive;

import io.airbyte.integrations.base.Destination;
Expand Down Expand Up @@ -79,6 +83,7 @@ public void run(final String[] args) throws Exception {
new IntegrationRunner(destination).run(args);
LOGGER.info("Completed destination: {}", destination.getClass().getName());
}

}

}
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
* Copyright (c) 2022 Airbyte, Inc., all rights reserved.
*/

package io.airbyte.integrations.base.adaptive;

import io.airbyte.integrations.base.IntegrationRunner;
Expand Down Expand Up @@ -79,6 +83,7 @@ public void run(final String[] args) throws Exception {
new IntegrationRunner(source).run(args);
LOGGER.info("Completed source: {}", source.getClass().getName());
}

}

}

0 comments on commit 932125e

Please sign in to comment.