Developer 역할 Spring 골격 smoke (role-developer-live-v4-001)

This commit is contained in:
forge-bot 2026-07-14 08:44:09 +00:00
parent 043179d18c
commit 050abab6ee

View file

@ -0,0 +1,19 @@
package com.example.developer;
import org.springframework.stereotype.Service;
@Service
public class DeveloperService {
public String getRole() {
return "Developer";
}
public String getRoleDescription() {
return "Developer role with Spring Boot capabilities";
}
public boolean isActive() {
return true;
}
}