We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08fe22b commit d6c3725Copy full SHA for d6c3725
2 files changed
compose.yml
@@ -1,6 +1,6 @@
1
2
services:
3
- bytebin:
+ jet:
4
image: ghcr.io/serlithnetwork/jet
5
ports:
6
- "9420:9420"
src/main/kotlin/net/serlith/jet/service/TokenService.kt
@@ -14,7 +14,7 @@ import java.util.concurrent.TimeUnit
14
class TokenService {
15
16
private final val config = File("config")
17
- private final val tokensFile = File("tokens.yml")
+ private final val tokensFile = File(this.config, "tokens.yml")
18
private final val objectMapper = ObjectMapper(YAMLFactory()).registerKotlinModule()
19
20
private final var tokens: Set<Token> = emptySet()
0 commit comments