This commit is contained in:
Filip Izydorczyk
2020-07-25 11:16:35 +02:00
parent 9a53025a4b
commit 0843fbccde
5 changed files with 155705 additions and 0 deletions

View File

@ -0,0 +1,12 @@
package com.plannaplan.services;
import com.plannaplan.repositories.HistoryRepository;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
public class HistoryService {
@Autowired
private HistoryRepository repo;
}