7 Add TUI module

7
Timo Bryant 2023-12-27 16:16:34 +01:00
parent cc727c681a
commit f777669dfa
4 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,3 @@
dependencies {
api(project(":libraries:core-api"))
}

View File

@ -0,0 +1,4 @@
package de.itkl.tui.implementation
class TerminalDataTableReporter {
}

View File

@ -0,0 +1,4 @@
package de.itkl.tui.implementation
class TerminalProgressBar {
}

View File

@ -0,0 +1,8 @@
package de.itkl.tui
import org.koin.dsl.module
/**
* Add terminal ui capabilities
*/
val tuiModule = module { }