Files
suwayomi-material-you-webui/server/src/main/kotlin/ir/armor/tachidesk/Main.kt

23 lines
578 B
Kotlin
Raw Normal View History

package ir.armor.tachidesk
/*
* Copyright (C) Contributors to the Suwayomi project
*
* This Source Code Form is subject to the terms of the Mozilla Public
2021-01-26 23:32:12 +03:30
* 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
2021-03-27 18:30:36 +04:30
import ir.armor.tachidesk.server.applicationSetup
2020-12-24 02:08:03 +03:30
2020-12-23 19:52:16 +03:30
class Main {
2021-03-27 18:30:36 +04:30
companion object {
2021-03-25 16:53:36 +04:30
2020-12-24 02:08:03 +03:30
@JvmStatic
fun main(args: Array<String>) {
2021-03-27 18:30:36 +04:30
applicationSetup()
javalinSetup()
2021-01-21 14:15:05 +03:30
}
}
}