15 lines
356 B
Java
15 lines
356 B
Java
|
package de.towerdefence.server.session;
|
||
|
|
||
|
import lombok.Getter;
|
||
|
import lombok.Setter;
|
||
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
||
|
import org.springframework.context.annotation.Configuration;
|
||
|
|
||
|
@Getter
|
||
|
@Setter
|
||
|
@Configuration
|
||
|
@ConfigurationProperties(prefix = "jwt")
|
||
|
public class JwtServiceConfig {
|
||
|
private String secret;
|
||
|
}
|