export const Get = async (weaponName: string): Promise<Weapon> => {
        return await getResource(Weapon, { where: { name: weaponName } });
    };