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