mirror of
https://github.com/Suwayomi/Suwayomi-Server.git
synced 2026-07-04 11:24:35 -05:00
* GC Unused or only used once objects * Move things around a bit * Revert some changes * Fix imports * Revert about change * Put back logger * Private logger * Revert systemtray * Move import
17 lines
463 B
Kotlin
17 lines
463 B
Kotlin
package ir.armor.tachidesk
|
|
|
|
/*
|
|
* Copyright (C) Contributors to the Suwayomi project
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
|
|
import ir.armor.tachidesk.server.JavalinSetup.javalinSetup
|
|
import ir.armor.tachidesk.server.applicationSetup
|
|
|
|
fun main() {
|
|
applicationSetup()
|
|
javalinSetup()
|
|
}
|