application.WatchMaker.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of specmatic-executable Show documentation
Show all versions of specmatic-executable Show documentation
Command-line standalone executable jar for Specmatic
package application
import `in`.specmatic.core.utilities.StubServerWatcher
import org.springframework.stereotype.Component
@Component
class WatchMaker {
fun make(paths: List): StubServerWatcher = StubServerWatcher(paths)
}