Начало создания репорт сервиса
This commit is contained in:
parent
2d1fd3f8e4
commit
9d5b74b67c
@ -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;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,4 @@
|
|||||||
|
package com.tsc.bitbucketbot.service;
|
||||||
|
|
||||||
|
public interface ReportService {
|
||||||
|
}
|
@ -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 {
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user