Add DropProvider and dao for monster drops

This commit is contained in:
P0nk
2023-03-08 22:46:24 +01:00
parent 7a848cf6a1
commit a70f4e303d
6 changed files with 168 additions and 1 deletions

View File

@@ -1,5 +1,6 @@
package database;
import database.drop.MonsterDropRowMapper;
import database.maker.MakerIngredientRowMapper;
import database.maker.MakerReagentRowMapper;
import database.maker.MakerRecipeRowMapper;
@@ -16,6 +17,7 @@ public final class JdbiConfig {
.registerRowMapper(new NoteRowMapper())
.registerRowMapper(new MakerReagentRowMapper())
.registerRowMapper(new MakerRecipeRowMapper())
.registerRowMapper(new MakerIngredientRowMapper());
.registerRowMapper(new MakerIngredientRowMapper())
.registerRowMapper(new MonsterDropRowMapper());
}
}