Skip to content

Commit

Permalink
♻️ refactor: refactor codebase #4
Browse files Browse the repository at this point in the history
  • Loading branch information
pnguyen215 committed Aug 17, 2024
1 parent 7cd806d commit 4f3d219
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions plugin/src/main/groovy/org/rmq4j/config/Rmq4jConfig.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,21 @@
package org.rmq4j.config;

import org.rmq4j.service.Rmq4jInsService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

@Configuration
public class Rmq4jConfig {
protected final Rmq4jInsService rmq4jInsService;

@Autowired
public Rmq4jConfig(Rmq4jInsService rmq4jInsService) {
this.rmq4jInsService = rmq4jInsService;
}

@Bean
public void snapIns() {
rmq4jInsService.snapIns();
}
}

0 comments on commit 4f3d219

Please sign in to comment.