Skip to content

Commit

Permalink
style: 마지막 라인 개행
Browse files Browse the repository at this point in the history
  • Loading branch information
m-a-king committed Nov 24, 2024
1 parent 6b06557 commit 9b37dd4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/main/java/com/somemore/auth/jwt/config/JwtConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ public class JwtConfig {
public SecretKey secretKey(@Value("${jwt.secret}") String rawSecretKey) {
return Keys.hmacShaKeyFor(rawSecretKey.getBytes(StandardCharsets.UTF_8));
}
}
}
2 changes: 1 addition & 1 deletion src/main/java/com/somemore/auth/jwt/domain/TokenType.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ public enum TokenType {
public int getPeriodInSeconds() {
return Math.toIntExact(period / 1000);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ public interface JwtUseCase {
void verifyToken(EncodedToken token);

String getClaimByKey(EncodedToken token, String key);
}
}
2 changes: 1 addition & 1 deletion src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ springdoc:
- /api/**

jwt:
secret: ${JWT_SECRET}
secret: ${JWT_SECRET}

0 comments on commit 9b37dd4

Please sign in to comment.