Developer 역할 Spring 골격 smoke (runtime-role-matrix-live-20260714105818-v9-developer-001)

This commit is contained in:
forge-bot 2026-07-14 11:00:05 +00:00
parent d95cf66afe
commit 5608dd1e28

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 "Software Developer role with coding and development responsibilities";
}
public boolean isActive() {
return true;
}
}