fun readList()

in src/main/kotlin/swot/Swot.kt [26:28]


    fun readList(resource: String) : Set<String>? {
        return File("lib/domains/$resource").takeIf { it.exists() }?.bufferedReader()?.lineSequence()?.toHashSet()
    }