Library that parses the cha
files and returns the set of environments.
It's consumed by the Gradle plugin and the Intellij Plugin
Just create an EnvironmentsProcessor, and it will parse the directory provided and give you the environments if present
val file = File("MyDirectory")
val environmentsProcessor = EnvironmentsProcessor(file)
val environments = environmentsProcessor.environments()
val someEnvironment = environments.first()