1
0
forked from s99622/lab

Dodanie klasy domain.UserEntity i modyfikacja klasy main

This commit is contained in:
Agnieszka Marzeda
2025-10-14 11:21:01 +02:00
parent 6bcaa4fb56
commit 1e99209b1a
2 changed files with 14 additions and 0 deletions

View File

@@ -8,6 +8,7 @@ public class DemoApplication {
public static void main(String[] args) {
System.out.println("Start application");
System.out.println("Drugi komunikat");
SpringApplication.run(DemoApplication.class, args);
}

View File

@@ -0,0 +1,13 @@
/*
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
*/
package com.example.demo.domain;
/**
*
* @author agama
*/
public class UserEntity {
}