aboutsummaryrefslogtreecommitdiff
path: root/yamlesque/src/main/scala/formats.scala
blob: 0dbbaccb8f7aff2d4a68de57f3a07917cd6024db (plain) (blame)
1
2
3
4
5
6
7
8
package yamlesque

trait YamlReader[A] {
  def read(yaml: YamlValue): A
}
trait YamlWriter[A] {
  def write(a: A): YamlValue
}