Начало создания репорт сервиса

This commit is contained in:
upagge 2020-04-06 10:09:27 +03:00
parent 2d1fd3f8e4
commit 9d5b74b67c
No known key found for this signature in database
GPG Key ID: 15CD012E46F6BA34
3 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,15 @@
package com.tsc.bitbucketbot.scheduler;
import com.tsc.bitbucketbot.service.ReportService;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;
@Service
@Slf4j
@RequiredArgsConstructor
public class SchedulerReport {
public final ReportService reportService;
}

View File

@ -0,0 +1,4 @@
package com.tsc.bitbucketbot.service;
public interface ReportService {
}

View File

@ -0,0 +1,9 @@
package com.tsc.bitbucketbot.service.impl;
import com.tsc.bitbucketbot.service.ReportService;
import org.springframework.stereotype.Service;
@Service
public class ReportServiceImpl implements ReportService {
}