Added Readme.txt to the repository

This commit is contained in:
2024-10-07 10:56:31 +02:00
commit f2e1833f82
11 changed files with 446 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package com.example.lab1;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class Lab1Application {
public static void main(String[] args) {
SpringApplication.run(Lab1Application.class, args);
}
}

View File

@@ -0,0 +1 @@
spring.application.name=lab1

View File

@@ -0,0 +1,13 @@
package com.example.lab1;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest
class Lab1ApplicationTests {
@Test
void contextLoads() {
}
}