initial commit
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
package com.bluetrack.tobaccotrackmodule;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
|
||||
@SpringBootApplication
|
||||
public class TobaccoTrackModuleApplication {
|
||||
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(TobaccoTrackModuleApplication.class, args);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package com.bluetrack.tobaccotrackmodule.dto;
|
||||
|
||||
public class IncomingEventDto {
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package com.bluetrack.tobaccotrackmodule.dto;
|
||||
|
||||
public class ValidationResult {
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package com.bluetrack.tobaccotrackmodule.model;
|
||||
|
||||
public class BaseEvent {
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package com.bluetrack.tobaccotrackmodule.model;
|
||||
|
||||
public enum EventStatus {
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package com.bluetrack.tobaccotrackmodule.repository;
|
||||
|
||||
public class EventRepository {
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package com.bluetrack.tobaccotrackmodule.service;
|
||||
|
||||
public class TrackingService {
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package com.bluetrack.tobaccotrackmodule.service.mapper;
|
||||
|
||||
public class EventMapper {
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
spring.application.name=tobacco-track-module
|
||||
@@ -0,0 +1,13 @@
|
||||
package com.bluetrack.tobaccotrackmodule;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
|
||||
@SpringBootTest
|
||||
class TobaccoTrackModuleApplicationTests {
|
||||
|
||||
@Test
|
||||
void contextLoads() {
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user