initial commit

This commit is contained in:
2026-02-11 21:17:47 +01:00
commit 4a78b97cd6
32 changed files with 1410 additions and 0 deletions

View File

@@ -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);
}
}

View File

@@ -0,0 +1,4 @@
package com.bluetrack.tobaccotrackmodule.dto;
public class IncomingEventDto {
}

View File

@@ -0,0 +1,4 @@
package com.bluetrack.tobaccotrackmodule.dto;
public class ValidationResult {
}

View File

@@ -0,0 +1,4 @@
package com.bluetrack.tobaccotrackmodule.model;
public class BaseEvent {
}

View File

@@ -0,0 +1,4 @@
package com.bluetrack.tobaccotrackmodule.model;
public enum EventStatus {
}

View File

@@ -0,0 +1,4 @@
package com.bluetrack.tobaccotrackmodule.repository;
public class EventRepository {
}

View File

@@ -0,0 +1,4 @@
package com.bluetrack.tobaccotrackmodule.service;
public class TrackingService {
}

View File

@@ -0,0 +1,4 @@
package com.bluetrack.tobaccotrackmodule.service.mapper;
public class EventMapper {
}

View File

@@ -0,0 +1 @@
spring.application.name=tobacco-track-module

View File

@@ -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() {
}
}