Inject ShopFactory

This commit is contained in:
P0nk
2023-03-29 20:51:31 +02:00
parent 705efb4340
commit c71ca7f4d5
10 changed files with 42 additions and 30 deletions

View File

@@ -1,6 +1,7 @@
package client.command;
import database.drop.DropProvider;
import server.ShopFactory;
public record CommandContext(DropProvider dropProvider) {
public record CommandContext(DropProvider dropProvider, ShopFactory shopFactory) {
}