Skip to content

Commit

Permalink
fix: refactor LocalConnectorRuntime
Browse files Browse the repository at this point in the history
  • Loading branch information
markfarkas-camunda committed Apr 4, 2023
1 parent d457806 commit e710d7d
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,12 @@
*/
package io.camunda.connector.bundle;

import io.camunda.connector.runtime.ConnectorRuntimeApplication;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class LocalConnectorRuntime {

public static void main(String[] args) {
SpringApplication.run(LocalConnectorRuntime.class, args);
SpringApplication.run(ConnectorRuntimeApplication.class, args);
}
}

0 comments on commit e710d7d

Please sign in to comment.