ref: app structure

This commit is contained in:
2026-08-16 20:07:50 +07:00
parent 51b59f4a2e
commit 99e7ff0a13
68 changed files with 422 additions and 749 deletions
@@ -0,0 +1,6 @@
package aplp.backend.web.common.security;
import java.time.Instant;
public record JwtClaims(String subject, Instant issuedAt, Instant expiration) {
}