Added event service

This commit is contained in:
Filip Izydorczyk
2020-07-27 16:19:31 +02:00
parent 173c742079
commit 8da4ffeffe
4 changed files with 60 additions and 0 deletions

View File

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