kitakkun / back-in-time-plugin

Kotlin Compiler Plugin to make your program back-in-time debuggable.
Apache License 2.0
33 stars 1 forks source link

Provide a new annotation which is helpful to initialize BackInTimeDebugService #100

Open kitakkun opened 3 days ago

kitakkun commented 3 days ago

Users must call BackInTimeDebugService.startService() at their application entry point.

For example:

fun main() {
    DefaultBackInTImeDebugService.startService()

    // application logics continue
}