Skip to content

Files

Latest commit

 

History

History
19 lines (15 loc) · 429 Bytes

README.md

File metadata and controls

19 lines (15 loc) · 429 Bytes

Examples

Some examples in java

@Component
public class BaseHandler implements MessageHandler {

    private final ShowInventory showInventory;
    private final ShowPlayerInfo showPlayerInfo;

    @Autowired
    public BaseHandler(ShowInventory showInventory, ShowPlayerInfo showPlayerInfo) {
        this.showInventory = showInventory;
        this.showPlayerInfo = showPlayerInfo;
    }
}

Некий текст