Move Shop stuff to own package

This commit is contained in:
P0nk
2023-03-30 06:47:07 +02:00
parent 39d759595d
commit 5f0e9a355b
10 changed files with 27 additions and 15 deletions

View File

@@ -1,7 +1,10 @@
package client.command;
import database.drop.DropProvider;
import server.ShopFactory;
import server.shop.ShopFactory;
/**
* @author Ponk
*/
public record CommandContext(DropProvider dropProvider, ShopFactory shopFactory) {
}