backend/buisnesslogic/src/main/java/com/plannaplan/services/GroupService.java
2020-07-23 17:27:20 +02:00

12 lines
285 B
Java

package com.plannaplan.services;
import com.plannaplan.repositories.GroupRepository;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
public class GroupService {
@Autowired
private GroupRepository repo;
}