Skip to content

Commit

Permalink
feat(connector): add S3SourceWorker
Browse files Browse the repository at this point in the history
1. add S3SourceWorker

Closes apache#4082
  • Loading branch information
TheR1sing3un committed Jun 25, 2023
1 parent ac6fb84 commit 45c1b3f
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,15 @@

package org.apache.eventmesh.source.connector.s3;

import org.apache.eventmesh.openconnect.Application;
import org.apache.eventmesh.source.connector.s3.connector.S3SourceConnector;

public class S3SourceWorker {

public static void main(String[] args) throws Exception {

Application rocketmqSourceApp = new Application();
rocketmqSourceApp.run(S3SourceConnector.class);

}
}

0 comments on commit 45c1b3f

Please sign in to comment.