Skip to content
Snippets Groups Projects
Commit dbf54ce8 authored by Lukas Karsch's avatar Lukas Karsch
Browse files

fixed package name

parent 3d964c41
No related branches found
No related tags found
No related merge requests found
package karsch.lukas.growbrosprototype;
package hdm.mi.growbros;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
......
package karsch.lukas.growbrosprototype.controllers;
package hdm.mi.growbros.controllers;
import hdm.mi.growbros.models.Plant;
import hdm.mi.growbros.service.PlantsService;
import jakarta.validation.Valid;
import karsch.lukas.growbrosprototype.models.Plant;
import karsch.lukas.growbrosprototype.service.PlantsService;
import org.springframework.web.bind.annotation.*;
import java.util.Collection;
......
package karsch.lukas.growbrosprototype.models;
package hdm.mi.growbros.models;
import jakarta.validation.constraints.Max;
import jakarta.validation.constraints.Min;
......
package karsch.lukas.growbrosprototype.models;
package hdm.mi.growbros.models;
public enum SoilType {
SANDY,
......
package karsch.lukas.growbrosprototype.service;
package hdm.mi.growbros.service;
import karsch.lukas.growbrosprototype.models.Plant;
import karsch.lukas.growbrosprototype.models.SoilType;
import hdm.mi.growbros.models.Plant;
import hdm.mi.growbros.models.SoilType;
import org.springframework.stereotype.Service;
import java.util.Collection;
......
package karsch.lukas.growbrosprototype;
package hdm.mi.growbros;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment