Server/src/main/java/de/towerdefence/server/session/JwtServiceConfig.java

15 lines
356 B
Java
Raw Normal View History

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;
}