2020-12-23 17:52:05 +03:30
|
|
|
package ir.armor.tachidesk
|
|
|
|
|
|
2021-03-26 04:17:02 +04:30
|
|
|
/*
|
|
|
|
|
* 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/. */
|
|
|
|
|
|
2021-03-30 21:10:41 +04:30
|
|
|
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
|
|
|
}
|
2020-12-23 17:52:05 +03:30
|
|
|
}
|
|
|
|
|
}
|